hyesungoh / learningWhatIWant

:fire: For memoization:boom:
6 stars 0 forks source link

String.prorotype.`localCompare` #50

Open hyesungoh opened 4 months ago

hyesungoh commented 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"]

스크린샷 2024-07-09 오후 5 10 07

https://caniuse.com/localecompare