Skip to content

Tag: javascript array sorting

JavaScript

10 JavaScript Array Methods Every Programmer Should Know

Arrays are usually used to store a list of elements that need to be accessed by a single variable. I believe that to use JavaScript effectively every developer should be able to use any one of these methods on an array. These methods can save a lot of lines of codes and also allow us to do some pretty awesome function programming!

January 22, 2019
Sorting Elements Alphabetically in JavaScript
JavaScript

Sorting Elements in an Array Alphabetically in JavaScript

There's a lot of reasons why you may want to sort an array, often it is done to make things easier for the user of the application to understand the data. Arrays are normally sorted to be in ascending order (or alphabetical).

May 19, 2015