创建零填充 JavaScript 数组的最有效方法是什么?
在 JavaScript 中创建任意长度的零填充数组最有效的方法是什么?
What is the most efficient way to create an arbitrary length zero filled array in JavaScript?
推荐答案
ES6引入Array.prototype.fill
.可以这样使用:
ES6 introduces Array.prototype.fill
. It can be used like this:
new Array(len).fill(0);
不确定它是否很快,但我喜欢它,因为它很短且可以自我描述.
Not sure if it's fast, but I like it because it's short and self-describing.
它仍然不在 IE 中(检查兼容性),但有一个 polyfill 可用.
It's still not in IE (check compatibility), but there's a polyfill available.
相关文章