js數組方法

數組去重 ES6 新增數據結構 Setweb let arr = [...new Set([1,5,8,4,5,8,7,8])]; console.log(arr); // [1, 5, 8, 4, 7] ps:ES5以前得方法不少,這兒不贅述,主要是這個新的數據結構數組 數組扁平化 採用閉包數據結構 function arrfun () { let result = []; retur
相關文章
相關標籤/搜索