摘要: 数组实例的fill() fill方法使用给定值,填充一个数组。 ['a', 'b', 'c'].fill(7) // [7, 7, 7] new Array(3).fill(7) // [7, 7, 7] fill方法还可以接受第二个和第三个参数,用于指定填充的起始位置和结束位置。 ['a', 'b 阅读全文
posted @ 2021-10-25 22:34 前端HL 阅读(138) 评论(0) 推荐(0) 编辑
摘要: ES5 与 ES6 遍历数组的不同方法 for ... of循环可以代替数组实例的forEach方法。 const arr = ['red', 'green', 'blue']; arr.forEach(function (element, index) { console.log(element) 阅读全文
posted @ 2021-10-25 21:50 前端HL 阅读(145) 评论(0) 推荐(0) 编辑