Answers for "sort array de numeros javascript"

2

Sort numbers from an array in javascript

const bignumbers = [66, 58, 81, 444, 92, 9, 6, 13, 2];
const sortedNumbers = bignumbers.sort(function (a, b) {
    return a - b;
})
console.log(sortedNumbers);
//Output: [2, 6, 9, 13, 58,66, 81, 92, 444]
Posted by: Guest on December-26-2021
0

ordenar numeros array javascript

numeros = [9,6,4,3,2,1,7,95,3,2,1]
console.log(numeros.sort());
//[1, 1, 2, 2, 3, 3, 4, 6, 7, 9, 95]
Posted by: Guest on November-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language