if then conditional logic javascript and code example
Example: javascript function that make a choice
function computerplay() {
choices = ["rock", "paper", "scissors"]
var ai = choices[Math.floor(Math.random() * choices.length)]
return ai;
}