.localeCompare()
기존 문자열과 비교했을때
비교 대상 문자열이 정렬상 전,후,같은순서에 오는지 비교하고 숫자를 리턴한다.
비교대상이 앞에 있으면 -1 , 뒤에있으면 1, 같으면 0을 리턴한다.
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare
.sort()
function compare(a, b) {
if (a is less than b by some ordering criterion) {
return -1;
}
if (a is greater than b by the ordering criterion) {
return 1;
}
// a must be equal to b
return 0;
}
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/sort
'Frontend > JavaScript' 카테고리의 다른 글
padStart(); (2) | 2022.04.05 |
---|---|
String.prototype.repeat() (0) | 2022.04.05 |
Math.abs() (0) | 2022.03.29 |
Reduce 함수에 대해 알아보기! (0) | 2022.03.17 |
Array. from() (0) | 2022.03.12 |