“zufälliges Wort js” 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

zufälliges Wort js

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 “zufälliges Wort js”

Fragen ähnlich wie “zufälliges Wort js”

Weitere verwandte Antworten zu “zufälliges Wort js” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen