๐Ÿ“šย Reference


๐Ÿ“œย Chapter


โ€ฃ

โ€ฃ

sort()


arr.sort([compareFunction])

๋ฐฐ์—ด๋ช….sort()
๋ฐฐ์—ด๋ช….sort(ํ•จ์ˆ˜)

๋ฌธ์ž์—ด ๋ฐฐ์—ด ์ •๋ ฌ - ์˜ค๋ฆ„์ฐจ์ˆœ


// ๋ฌธ์ž์—ด ๋ฐฐ์—ด ์ •๋ ฌ - ์˜ค๋ฆ„์ฐจ์ˆœ
const months = ['March', 'Jan', 'Feb', 'Dec'];
months.sort();

// ["Dec", "Feb", "Jan", "March"]
console.log(months);

let arr = [1, 2, 100, 10, 222, 3];
arr.sort()
// [1, 10, 100, 2, 222, 3];
console.log(arr);

๋ฌธ์ž์—ด ๋ฐฐ์—ด ์ •๋ ฌ - ๋‚ด๋ฆผ์ฐจ์ˆœ