Ejemplo: generador de palabras aleatorias js
var word = ['Rock', 'Paper', 'Scissor'];
var words = word[Math.floor(Math.random()*word.length)];
alert('The computer chose:' + wors);
// Be sure to add more to the string values if you wish to add more words.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)