JavaScript 在布尔矩阵中更新特定索引?
要更新,请使用 JavaScript 中的 fill() 概念。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 ] ]
广告