Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

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]
Comment

sort in javascript array with numbers

//sort is function in js which sort according to alphanumerical
//for array with number it is little twist
const items= ["Banana","Orange","Apple"];
const ratings = [92,52,2,22]
console.log(items.sort())// reuturn ["Apple","Banana","Orange]
//for array with number
ratings.sort(function(a,b){
return a-b; //ascending for decending b-a
// return is negative a is sorted befor b 
// positive b is sorted before a
// if they are the same is 0 then nothing changes.
})
Comment

js sort number array

objs.sort((a,b) => a.last_nom - b.last_nom); // b - a for reverse sort
Comment

js sort integer array

// ascending (normal)
numArray.sort((a,b) => a-b);

// decending (reverse)
numArray.sort((a,b) => b-a);
Comment

sort numbers in array in js

const numbers = [4, 2, 5, 1, 3];
numbers.sort(function(a, b) {
  return a - b;
});
console.log(numbers);

// [1, 2, 3, 4, 5]
Comment

sort numbers in array javascript

function sortNumber(a, b) {
  return a - b;
}
Arr.sort(sortNumber);
Comment

sort array of numbers js

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

console.log(numArray);
 Run code snippet
Comment

PREVIOUS NEXT
Code Example
Javascript :: vanilla javascript change background color 
Javascript :: js loader 
Javascript :: js char array to string 
Javascript :: javascript datetime format 
Javascript :: return all elements of javascript array except the first item 
Javascript :: use style in react 
Javascript :: get option value jquery 
Javascript :: promise.all vs promise.allsettled 
Javascript :: reset page js 
Javascript :: datatables server side 
Javascript :: cart page url in shopify 
Javascript :: get thumbnail from video js 
Javascript :: use get_json in jstree example 
Javascript :: fs.readfile 
Javascript :: how to remove quotes using regex 
Javascript :: jasmine spy return value when using create Spy Object angular 2 
Javascript :: modulo operator in javascript 
Javascript :: pass data from child to parent react 
Javascript :: js read file json 
Javascript :: javascript 2 return values 
Javascript :: javascript check if object is null or empty 
Javascript :: nodejs open file 
Javascript :: node js check if called from module 
Javascript :: how to destroy cookie in javascript 
Javascript :: how can when click buton scrool to another elemtn 
Javascript :: what is div in javascript 
Javascript :: binary tree implementation javascript 
Javascript :: javascript debouncing 
Javascript :: js refresh 
Javascript :: http get response body node js 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =