Answers for "how to sort numbers in an array in ascending order javascript"

10

javascript sort by numerical value

// Sort an array of numbers based on numerical value.
let numbers = [23, 65, 88, 12, 45, 99, 2000]

let sortednumbers = numbers.sort((a, b) => a - b);
//=> [12, 23, 45, 65, 88, 99, 2000]
Posted by: Guest on February-28-2020
1

sort numbers in array javascript

function sortNumber(a, b) {
  return a - b;
}
Arr.sort(sortNumber);
Posted by: Guest on March-01-2020
0

sort string mixed with numbers javascript

const sortAlphaNum = (a, b) => a.localeCompare(b, 'en', { numeric: true })
console.log(['A1', 'A10', 'A11', 'A12', 'A2', 'A3', 'A4', 'B10', 'B2', 'F1', 'F12', 'F3'].sort(sortAlphaNum))
Posted by: Guest on August-16-2021

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language