Answers for "sort function text array javascript"

28

javascript sort array by A-Z in js

// Price Low To High
array?.sort((a, b) => (a.price > b.price ? 1 : -1))
// Price High To Low
array?.sort((a, b) => (a.price > b.price ? -1 : 1))
// Name A to Z
array?.sort((a, b) => (a.name > b.name ? 1 : 1))
// Name Z to A
array?.sort((a, b) => (a.name > b.name ? -1 : 1))
// Sort by date
array.sort((a,b) =>  new Date(b.date) - new Date(a.date));
Posted by: Guest on November-03-2021
1

js how to sort strings in array

let fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.sort()
console.log(fruits)
// [ 'Apple', 'Banana', 'Mango', 'Orange' ]
Posted by: Guest on December-28-2021

Code answers related to "sort function text array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language