如何快速声明一个长度为16的数组,并且默认值为0?

huangapple go评论69阅读模式
英文:

JavaScript How to declare 16 length array with default 0 value quick?

问题

如何以最短的方式创建类似这样的数组?是否有可能以更短的方式创建?
感谢您的回答。

英文:

let array1 = Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
how to make like this array with shortest way ? is it possible to make shorter way ?
thank you for your answers.

答案1

得分: 3

你可以使用.fill()方法:

let array1 = new Array(16).fill(0);

正如其名字所示,它可以用所需的值填充数组。

英文:

You can use the .fill() method:

let array1 = new Array(16).fill(0);

As its name suggests, it fills the array with some desired value.

huangapple
  • 本文由 发表于 2020年1月3日 22:06:12
  • 转载请务必保留本文链接:https://go.coder-hub.com/59579958.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定