Answers for "how to sort an array in descending order javascript"

25

ascending and descending val in array using js

numArray.sort((a, b) => a - b); // For ascending sort
numArray.sort((a, b) => b - a); // For descending sort
Posted by: Guest on May-08-2021
2

javascript sort descending

function sortEggsInNest(a, b) {
  return a > b ? -1 : b > a ? 1 : 0;
}
Posted by: Guest on March-19-2021
1

javascript sort array in ascending order

//sorts arrays of numbers
function myFunction() {
  points.sort(function(a, b){return a-b});
  document.getElementById("demo").innerHTML = points;
}
Posted by: Guest on March-25-2020

Code answers related to "how to sort an array in descending order javascript"

Browse Popular Code Answers by Language