export function generateRandomCells(width, height) { return Array.from({ length: height }, () => Array.from({ length: width }, () => Math.random() < reactiveState.randomFillProbability ? 1 : 0, ), );} Copy
export function generateRandomCells(width, height) { return Array.from({ length: height }, () => Array.from({ length: width }, () => Math.random() < reactiveState.randomFillProbability ? 1 : 0, ), );}
Source