Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript alert random word

var word = ['Rock', 'Paper', 'Scissor'];
var words = word[Math.floor(Math.random()*word.length)];
alert('The computer chose:' + words);

// Be sure to add more to the string values if you wish to add more words.
 
PREVIOUS NEXT
Tagged: #javascript #alert #random #word
ADD COMMENT
Topic
Name
6+9 =