afewminutesofcode.com

How to sort an array numerically in javascript

Cover Image for How to sort an array numerically in javascript

To sort an array numerically in javascript you pass a Compare Function to the array you want to sort.

Jump To Section

Sort Array in ascending order javascript

To Sort in ascending order (lowest to highest)

[1, 5, 3, 9, 2, 11].sort((a, b) => a - b);
//outputs [1, 2, 3, 5, 9, 11]

Sort Array in descending order javascript

To Sort in descending order (highest to lowest) swap the a and the b around

[1, 5, 3, 9, 2, 11].sort((a, b) => b - a);
//outputs [11, 9, 5, 3, 2, 1]

So far so good but what about if our numbers are coming through as a string? The built in compare function will handle this for us.

["1", "55", "3", "9", "2", "11"].sort((a, b) => a - b);
//outputs ["1", "2", "3", "9", "11", "55"]

There is also another syntax which you might come across which can be a bit cleaner and reusable.

const highestToLowest = (a, b) => b - a;
const lowestToLowest = (a, b) => a - b;

This will allow us to pass in our function directly into the sort.

eg

console.log([1, 5, 3, 9, 2, 11].sort(highestToLowest));
//outputs [11, 9, 5, 3, 2, 1]
console.log([1, 5, 3, 9, 2, 11].sort(lowestToLowest));
//outputs [1, 2, 3, 5, 9, 11]

I find this the best solution because we are able to test this function and reuse it with confidence across our codebase, also by giving a descriptive name to the function we help prevent getting our ascending and descending orders mixed up.

You might also like

Cover Image for Check if a string contains a substring in JavaScript

Check if a string contains a substring in JavaScript

Since ES6 you can now use the built in includes method eg string.includes(substring).

Cover Image for Create a Cricket Points Table in Javascript - Part 5

Create a Cricket Points Table in Javascript - Part 5

In this tutorial we are going to build our points table based off our previous work.

Cover Image for Create a Cricket Points Table in Javascript - Part 4

Create a Cricket Points Table in Javascript - Part 4

In this tutorial we are going to complete the rest of the calculations required for the points table.

Cover Image for Create a Cricket Points Table in Javascript - Part 3

Create a Cricket Points Table in Javascript - Part 3

In this tutorial we are going to create functions to calculate the total number of wins, losses, no results and points a team has for the tournament.

Cover Image for Create a Cricket Points Table in Javascript - Part 2

Create a Cricket Points Table in Javascript - Part 2

In this tutorial we are going to create a function to calculate when a team has won, lost or there is no result.

Cover Image for Create a Cricket Points Table in Javascript - Part 1

Create a Cricket Points Table in Javascript - Part 1

In this tutorial we are going to Create a Cricket Points Table in JavaScript.

Cover Image for Create a weather voice assistant in React

Create a weather voice assistant in React

In this tutorial we are going to create a simple React app that will use the speechSynthesis API to speak the current temperature in the city we type in.

Cover Image for Getting to know the many voices in your browser

Getting to know the many voices in your browser

The Speech Synthesis API has been around since about 2014 but still has not gained a huge amount of traction on many sites.

Cover Image for How to create a custom sort order in javascript

How to create a custom sort order in javascript

When sorting an array of objects in JavaScript, usually we will want to sort alphabetically or numerically, but there are also some cases were we might need a custom sort order.

Cover Image for How to sort an array alphabetically in javascript

How to sort an array alphabetically in javascript

To sort an array alphabetically in javascript you can use the sort function.

Cover Image for How to sort an array numerically in javascript

How to sort an array numerically in javascript

To sort an array in javascript use the sort method sort((a, b) => a - b)

Cover Image for How to convert an array into an object in javascript

How to convert an array into an object in javascript

To convert an array into an object we will create a function and give it 2 properties, an array and a key..

Cover Image for How to filter an array in javascript

How to filter an array in javascript

To filter an array in Javascript we can pass in a condition to the built in filter function.