Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

sort in javascript

//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.
})
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #sort #javascript
ADD COMMENT
Topic
Name
8+1 =