forked from caroline_moran/algoritmos-para-estudar
feat: aterações para performace na atividade 1
This commit is contained in:
parent
14652a86f8
commit
72734a5951
@ -20,9 +20,9 @@
|
|||||||
for(let j = 0;j < 20; j++){
|
for(let j = 0;j < 20; j++){
|
||||||
indice = Math.floor(Math.random()* letras.length);
|
indice = Math.floor(Math.random()* letras.length);
|
||||||
array[j] = letras[indice];
|
array[j] = letras[indice];
|
||||||
}
|
if(j % 3 == 0){
|
||||||
for(let i = 2;i < 20; i += 3){
|
array[j] = "0";
|
||||||
array[i] = "0";
|
}
|
||||||
}
|
}
|
||||||
let string = array.join("");
|
let string = array.join("");
|
||||||
console.log(string);
|
console.log(string);
|
||||||
@ -48,7 +48,6 @@
|
|||||||
console.log(a[i]);
|
console.log(a[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user