Open hyesungoh opened 4 months ago
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare
const times = ["11:22", "11:11", "10:45", "12:30", "09:15"]; times.sort((a, b) => { return a.localeCompare(b); }); console.log(times); // ["09:15", "10:45", "11:11", "11:22", "12:30"]
https://caniuse.com/localecompare
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare
https://caniuse.com/localecompare