sort ()는 문자정렬이 된다. priceSort(){ var array = [3,5,2]; array.sort(); console.log(array); // [2, 3, 5] }. 숫자정렬을 하려면 function(a ...
確定! 回上一頁