Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

sort array of numbers

const myNumbers = [0, 3.14, 2.718, 13];

myNumbers.sort(function (a, b) {
    return a - b;

    /* If a less than b, a negative number will be returned. 
    It means that a is to be placed before b in the final array. For example:

        a = 0, b = 3.14
        a - b = -3.14

    Received a negative number, so a goes before b */
}); 

console.log(myNumbers); // [0, 2.718, 3.14, 13] — correct 
Source by practicum.yandex.com #
 
PREVIOUS NEXT
Tagged: #sort #array #numbers
ADD COMMENT
Topic
Name
4+4 =