SOURCE

// 用性能尽可能好的方法展开高阶数组并去重、按升序排序
function flatAndSort(arr) {
    // your code here

}

const array3 = [0, [1, 2], 10, [3, 7, 10], [[4, 5, 0], 6]]
console.log(flatAndSort(array3))

console 命令行工具 X clear

                    
>
console