Last active
June 12, 2020 06:25
-
-
Save YounglanHong/594eeef968fb60cdabb3fad1f94ee550 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A, An, The로 시작하는 경우, 해당단어들을 공백으로 대체 | |
function strip(bandName) { | |
return bandName.replace(/^(a |the |an )/i, "").trim(); | |
} | |
// sort 함수 내부에서 strip 함수로 인자를 감싸주면, 실제 데이터는 변화하지 않으면서 조건에 따라 정렬 가능 | |
const sortedBands = bands.sort((a, b) => (strip(a) > strip(b) ? 1 : -1)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment