How to sort an array of numbers in ascending order with Node.js

2 Answers

0 votes
let arr = [1000, 10, -9, 100, 10000, 100000, 1];
  
arr.sort(function(a, b) {
    return a - b;
});
 
console.log(arr);
   
   
   
/*
run:
   
[
      -9,     1,
      10,   100,
    1000, 10000,
  100000
]
   
*/

 



answered Apr 30, 2024 by avibootz
0 votes
let arr = [1000, 10, -9, 100, 10000, 100000, 1];
  
arr = arr.sort((a, b) => a - b);
 
console.log(arr);
   
   
   
/*
run:
   
[
      -9,     1,
      10,   100,
    1000, 10000,
  100000
]

 



answered Apr 30, 2024 by avibootz

Related questions

...