JavaScriptのソート
const array=[23,18,57,21,45,69]
//
//
//
for(let i=0; iarray[j+1]){
//
let temp=array[j]
array[j]=array[j+1]
array[j+1]=temp
}
}
}
//
for(let i=0;iarray[j+1]){
isSort=false
let temp=array[j]
array[j]=array[j+1]
array[j+1]=temp
}
}
if(isSort){//
break
}
}
console.log(array)
// sort
// a b, a - b , , 。
// a b, a - b , , 。
function sortNumber(a,b){
return a-b
}
console.log(array.sort(sortNumber))