Posts by guilherme de santi souto • 1 point
1 post
-
-4
votes1
answer486
viewsQ: I am trying to create a function q generates 10000 random words with 3 to 5 characters, but only this passing a word
function textoAleatorio(){ var letras = 'abcdefghijklmnopqrstuvwxyz'; var aleatorio = ''; for (var i = 0; i < 5 ; i++) { var rnum = Math.floor(Math.random() *…
javascriptasked guilherme de santi souto 1