var numArray = [140000, 104, 99]; numArray.sort(function(a, b) { return a - b; }); console.log(numArray); Run code snippet