Answers for "order items in object by numerical value javascript"

2

sort() object values javascript

list.sort((a, b) => (a.color > b.color) ? 1 : (a.color === b.color) ? ((a.size > b.size) ? 1 : -1) : -1 )
Posted by: Guest on May-18-2020
0

sort object with certain value at start of array js

objs.sort((a,b) => {
 	if (a.value == "your value") return parseInt("-" + objs.indexOf(a)) // moves up based on its index
})
Posted by: Guest on July-22-2021

Code answers related to "order items in object by numerical value javascript"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language