我正在练习JavaScript,只是在尝试制作一个简单的剪刀石头布游戏,我遵循了一些指导,但是当我进行console.log记录时,它只是打印函数而不是选择数组。我如何获得这些选择?
let choice = ['Rock', 'Paper', 'Scissors'];
function computerPlay () {
return choice[Math.floor(Math.random * choice.length)];
}
console.log(computerPlay);
答案 0 :(得分:2)
您需要进行2项更改才能运行代码
Math.random()
console.log(computerPlay())
您需要使用 fn_name()调用函数才能执行该函数。
let choice = ['Rock', 'Paper', 'Scissors'];
function computerPlay() {
return choice[Math.floor(Math.random() * choice.length)];
}
console.log(computerPlay());