sort object list
Why sorting is harder than it seems
This story is about sorting arrays. I am telling it because sorting continues to surprise me with delightful bugs. Frustrating too, but also delightful. First, some context...
https://mill.plainopen.com/why-sorting-is-harder-than-it-seems
How to sort an array of objects by a property value in JavaScript
Say you have an array of objects like this: You want to render this list, but first you want to order it by the value of one of the properties. For example you want to order it by the color name, in alphabetical order: black, red, white.
https://flaviocopes.com/how-to-sort-array-of-objects-by-property-javascript/

자바스크립트 정렬 함수, sort()
자바스크립트 배열의 내장 함수에 sort()가 있다. 명칭 그대로 배열 안의 원소를 정렬하는 함수이다. 추후에 또 검색할 것 같아서 적어놓는다.
http://dudmy.net/javascript/2015/11/16/javascript-sort/

Seonglae Cho