2025年02月19日 建站教程
ES6语法中关于flat()的基本用法介绍,下面web建站小编给大家简单介绍一下各种用法介绍!
各种代码如下:
//默认数组 var arr = [1, 2, [ 3, [ 4, 5 ], 6 ], 7, 8] // 不传参 flat() const array3 = arr.flat(); console.log(array3); // [1, 2, [ 3, [ 4, 5 ], 6 ], 7, 8] // 如果不传参 则是从外到里 降一维 // flat(0) const array4 = arr.flat(0); console.log(array4); // [1, [2, [3, [4, 5], 6,], 7], 8] // 传参为 0 数组没有变化 // flat(1) const array3 = arr.flat(1); console.log(array3); // [1, 2, [ 3, [ 4, 5 ], 6 ], 7, 8] // 传参为 1 则是从外到里 降一维, 和不传参一样 // flat(2) const array4 = arr.flat(2); console.log(array4); // [1, 2, 3, [4, 5], 6, 7, 8] // flat(0) const array5 = arr.flat(-1); console.log(array5); // [1, [2, [3, [4, 5], 6,], 7], 8] // 传参为 0 数组没有变化
本文链接:http://so.lmcjl.com/news/23442/