“JS Random Word Generator” Code-Antworten

JavaScript zufälliges Wort

// function for selecting a random index from an array
const pickOne = (arr) => arr[Math.floor(Math.random() * arr.length)];

let choice = pickOne(["Apple", "Banana", "Orange"]);
DenverCoder1

JS Random Word Generator

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.
ayaan

Ähnliche Antworten wie “JS Random Word Generator”

Fragen ähnlich wie “JS Random Word Generator”

Weitere verwandte Antworten zu “JS Random Word Generator” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen