标签:ret 数组 splice -- return pre length sort spl
unique (arr) {
for (let i = 0; i < arr.length; i++) {
for (let j = i + 1; j < arr.length; j++) {
if (arr[i] === arr[j]) {
arr.splice(j, 1)
j--
}
}
}
// 升序
arr.sort((a, b) => {
return b < a ? 1 : -1
})
// 降序
// arr.sort((a, b) => {
// return a < b ? 1 : -1
// })
}
}
标签:ret 数组 splice -- return pre length sort spl
原文地址:https://www.cnblogs.com/langqq/p/9133190.html