binary sort negative and positive code example
Example: sort array with negative numbers
var arr = [10, 5, 40, 25, -3412, 4212, -107.578, 97.453];
function sortNumber(a, b) {
return a - b;
}
return arr.sort(sortNumber);
var arr = [10, 5, 40, 25, -3412, 4212, -107.578, 97.453];
function sortNumber(a, b) {
return a - b;
}
return arr.sort(sortNumber);