본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JavaScript

sort(fnc(a, b{}return a-b)) + reverse() 내림차순

sort(fnc(a, b{}return a-b)) + reverse() 내림차순

let array = [52, 71, 32, 103, 273, 93]
array.sort(function (a, b) {return a - b})
document.write(array.reverse()); //273,103,93,71,52,32

 

https://standout.tistory.com/611

 

sort(fnc(a, b{}return a-b)) 오름차순

sort(fnc(a, b{}return a-b)) 오름차순 let array = [52, 71, 32, 103, 273, 93] array.sort(function (a, b) {return a - b}) document.write(array); //32,52,71,93,103,273

standout.tistory.com