




Useful JavaScript Arrays Methods
Originally posted on bigsondev.com Arrays exist in every programming language. It's a data structure best suited for storing multiple values. And, for doing various operations on these values, often called as a collection. Introduction It's always best to learn by doing. Take a look at the below code example, study, and execute it step by step. // Create an array of 3 items using [ ] brackets const friends = ["John",...

You Can Now Install Official Evernote Client on Ubuntu and Debian-based Linux Distributions
Evernote is a popular note-taking application. It was a revolutionary product at the time of its launch. Since then, there have been several such application that allow you to save web clippings, notes etc into notebook...













App version management in Android Enterprise – Managed Play Closed Tracks and their nuances
If you think my titles are wordy, check the official title of good old Robinson Crusoe! Anyway, today we will look at two important things: Using Managed Google Play feature called Closed Tracks to control app versions...
8 Useful JavaScript ES2019 Features to Know About
The ES2019 specification may have been a smaller addition to JavaScript, but it still brought some interesting features. This tutorial will show you eight ES2019 features that can make your life easier. These features include trimStart(), trimEnd(), flat(), flatMap(), Object.fromEntries() and more. String.prototype.trimStart() and String.prototype.trimEnd() If you've ever worked with strings there is chance you had to deal with...