This guide shows how toSorted function works in JavaScript with arrays. It covers syntax, rules, and examples for numbers, text, and objects within ES2023 support.
Table of Content
Understand the toSorted Function in JavaScript
The toSorted creates a new array with sorted values. It leaves the original array unchanged.
The syntax looks like this:
array.toSorted(compareFunction)The compareFunction is optional. It defines how to compare two values. toSorted returns a new array that has the sorted values.
The toSorted makes a new array. It sorts values based on the compare function or the default order. It does not change the original array.
Here is an example:
const numbers = [3, 1, 2];
const sortedNumbers = numbers.toSorted();
console.log(sortedNumbers);This returns a new array [1, 2, 3]. The original array [3, 1, 2] stays the same.
Here is another example:
const words = ["pear", "apple", "banana"];
const sortedWords = words.toSorted();
console.log(sortedWords);This returns a new array ["apple", "banana", "pear"]. The original array stays in its old order.
You can also sort arrays of objects with toSorted. For example:
const users = [{name: "Zara"}, {name: "Ali"}, {name: "John"}];
const sortedUsers = users.toSorted((a, b) => a.name.localeCompare(b.name));
console.log(sortedUsers);This returns a new array sorted by name [{name:"Ali"}, {name:"John"}, {name:"Zara"}]. The original array stays in its old order.
The toSorted is part of ES2023. Modern browsers like Chrome, Edge, and Firefox include support. Older browsers may need a polyfill before use.
The Difference Between sort() and toSorted()
The sort() sorts the array in place and changes its original order. toSorted() makes a new sorted array and leaves the original unchanged.
| Method | Changes Original Array | Returns New Array |
|---|---|---|
| sort() | Yes | No |
| toSorted() | No | Yes |
Use sort() when you want to change the array itself and the toSorted() when you want a new array without changes to the original.
Examples of the toString Function in JavaScript
Sort Numbers in Ascending Order:
const nums = [10, 5, 8, 1];
const sorted = nums.toSorted((a, b) => a - b);
console.log(sorted);This shows how to sort numbers in ascending order while the original array stays the same. It returns a new array with ordered numbers.
Sort Strings by Length:
const items = ["banana", "kiwi", "apple"];
const sorted = items.toSorted((a, b) => a.length - b.length);
console.log(sorted);This shows how to sort text by length. It returns a new array with text in order by length. The original array stays the same.
Sort Objects by Age:
const people = [{age:30},{age:20},{age:40}];
const sorted = people.toSorted((a, b) => a.age - b.age);
console.log(sorted);This shows how to sort objects by a property. It creates a new array in order of age and does not change the original array.
Sort with Custom Compare Function:
const letters = ["b", "C", "a"];
const sorted = letters.toSorted((a, b) => a.localeCompare(b, undefined, {sensitivity: 'base'}));
console.log(sorted);This shows how to sort values with a custom compare rule. It gives a new array with values sorted without case issues and leaves the old array untouched.
Wrapping Up
You learned how toSorted creates a new array and leaves the original untouched.
Here is a quick recap:
sort()changes the array itself.toSorted()makes a new sorted array.- Use each one based on whether you want to change the original array or not.
FAQs
What is JavaScript toSorted function used for?
const numbers = [3, 1, 4, 2];
const sorted = numbers.toSorted();
console.log(sorted); // [1, 2, 3, 4]
console.log(numbers); // [3, 1, 4, 2]
- sort() mutates the array
- toSorted() returns a new array
What is the difference between sort and toSorted in JavaScript?
The difference is that sort() changes the original array while toSorted() creates a new one.
This makes toSorted safer in most use cases.
const fruits = ["banana", "apple", "mango"];
const s1 = fruits.sort();
console.log(fruits); // ["apple", "banana", "mango"]
const fruits2 = ["banana", "apple", "mango"];
const s2 = fruits2.toSorted();
console.log(fruits2); // ["banana", "apple", "mango"]
console.log(s2); // ["apple", "banana", "mango"]
How do you use toSorted function with objects in JavaScript?
You can pass a compare function inside toSorted() to sort objects by a property.
This does not affect the original array of objects.
const users = [
{name: "Alice", age: 25},
{name: "Bob", age: 20},
{name: "Charlie", age: 30}
];
const sortedUsers = users.toSorted((a, b) => a.age - b.age);
console.log(sortedUsers);
/*
[
{name: "Bob", age: 20},
{name: "Alice", age: 25},
{name: "Charlie", age: 30}
]
*/
Is JavaScript toSorted function supported in all browsers?
The toSorted function is part of ES2023 and modern browsers support it. Older browsers may not support it without a polyfill.
- ✅ Chrome 110+
- ✅ Edge 110+
- ✅ Safari 16.4+
- ✅ Firefox 115+
- ❌ Older browsers need polyfills
Similar Reads
The this keyword links code, context, and object reference in JavaScript. You can use it to refer to the owner…
JavaScript optional chaining lets you access object values without runtime errors. It checks if a property exists before access and…
You need to compare values in almost every JavaScript program. This is where comparison operators come in. They check if…
JavaScript Objects hold values as key and value pairs, and they help you store and access data. Understand the JavaScript…
The JavaScript while loop runs code as long as a condition stays true. You can use it to repeat tasks…
Math.asin() finds the arc sine of a number in JavaScript. It helps you work with angles from values. You get…
JavaScript runs code in different ways, but the for loop stays one of the most common tools. You use it…
JavaScript works with different kinds of values. Each value has a type, known as a data type. These types help…
The for...of loop appeared to solve the problem of complex loops over arrays and strings. It gives you a way…
JavaScript includes Math.sign to find out if a number is positive. It also helps detect negative values or zero. It…