英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论