Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 588 Bytes

4.md

File metadata and controls

21 lines (16 loc) · 588 Bytes

已知如下数组: var arr = [ [1, 2, 2], [3, 4, 5, 5], [6, 7, 8, 9, [11, 12, [12, 13, [14] ] ] ], 10]; 编写一个程序将数组扁平化去并除其中重复部分数据,最终得到一个升序且不重复的数组

  Array.from(new Set(arr.flat(Infinity))).sort((a,b)=>{ return a-b})
Array.prototype.flat= function() {
    return [].concat(...this.map(item => (Array.isArray(item) ? item.flat() : [item])))
}

Array.prototype.unique = function() {
    return [...new Set(this)]
}

const sort = (a, b) => a - b

console.log(arr.flat().unique().sort(sort))