how to initialize array as filled with false in javascript code example
Example: how to fill false into array javascript
var numeroPerguntas = 5;
var anyBoxesChecked = new Array(numeroPerguntas).fill(false);
console.log(anyBoxesChecked);