odd

数组的sort方法在排序时,默认会调用每个元素的toString()方法后在进行比较:

> let arr = [1,15,2,25]
undefined
> arr.sort()
[ 1, 15, 2, 25 ]

你可能感兴趣的:(odd)