其他分享
首页 > 其他分享> > Es6学习 查漏补缺

Es6学习 查漏补缺

作者:互联网

数组对象 flat()
用途: 用于拉平嵌套数组对象

const numbers = [1, 2, [3, 4, [5, 6]]];
// 拉平一层数组
numbers.flat(); 
//  输出 [1, 2, 3, 4, [5, 6]]
// 拉平两层数组
numbers.flat(2); 
//  输出 [1, 2, 3, 4, 5, 6]
// 拉平两层数组
numbers.flat().flat(); 
//  输出 [1, 2, 3, 4, 5, 6]
// 不管多少层  都拉平
numbers.flat(Infinity)
//  输出 [1, 2, 3, 4, 5, 6]

 

标签:Es6,查漏,flat,拉平,两层,输出,numbers,数组,补缺
来源: https://www.cnblogs.com/weblf/p/16250510.html