Array.prototype.orderby=function() { let self=this; let arr=[self[0]], i=1; for(;i<self.length; i++) { let index=arr.findIndex(f=>f > self[i]); arr.splice(index==-1?arr.length: index, 0, self[i]); } return arr; } Array.prototype.orderdescby=function() { let self=this; let arr=[self[0]], i=1; for(;i<self.length; i++) { let index=arr.findIndex(f=>f < self[i]); arr.splice(index==-1?arr.length:index,0,self[i]); } return arr; } const points = [40, 100, 1, 500, 25, 107,0]; console.log(points.orderby()) console.log(points.orderdescby())
Showing posts with label orderby. Show all posts
Showing posts with label orderby. Show all posts
Thursday, July 18, 2024
Using Orderby ascending and Orderby descending to sort array javascript
Tags
Array
,
ascending
,
descending
,
JavaScript
,
orderby
,
sort
Subscribe to:
Posts
(
Atom
)