要更新,请使用fill()
JavaScript中的概念。该fill()
方法用于用静态值填充数组元素。以下是代码-
const array= Array(4) var fillWithTrueValue=array.fill(true); const matrixWithOnlyBooleanTrue = Array(4).fill(fillWithTrueValue); console.log(matrixWithOnlyBooleanTrue);
要运行以上程序,您需要使用以下命令-
node fileName.js.
在这里,我的文件名为demo59.js。
输出结果
这将产生以下输出-
PS C:\Users\Amit\JavaScript-code> node demo59.js [ [ true, true, true, true ], [ true, true, true, true ], [ true, true, true, true ], [ true, true, true, true ] ]