I have an array and I want to overwrite all values in it (that are all numbers) with a 0. So the array already exists.

I can do this with a for loop. However, is there a fill() call of some kind like the Java Arrays.fill()?

有帮助吗?

解决方案

A very simple for-loop is all you need. There's no fill-function in JavaScript.

var length = arr.length,
for (var i = 0; i < length; i++) {
  arr[i] = 0;
}

其他提示

You can use map for this.

var arr = [1,2,3];
arr = arr.map(function() {return 0});
//arr = [0, 0, 0]

The performance may be worse than a plain for loop.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top