如何返回或console.log函数返回选择的数组?

时间:2019-07-09 00:37:25

标签: javascript arrays function return console.log

我正在练习JavaScript,只是在尝试制作一个简单的剪刀石头布游戏,我遵循了一些指导,但是当我进行console.log记录时,它只是打印函数而不是选择数组。我如何获得这些选择?

let choice = ['Rock', 'Paper', 'Scissors'];

function computerPlay () {
    return choice[Math.floor(Math.random * choice.length)];
}

console.log(computerPlay);

1 个答案:

答案 0 :(得分:2)

您需要进行2项更改才能运行代码

  1. Math.random 更改为Math.random()
  2. console.log(computerPlay)更改为console.log(computerPlay())
  

您需要使用 fn_name()调用函数才能执行该函数。

let choice = ['Rock', 'Paper', 'Scissors'];

function computerPlay() {
  return choice[Math.floor(Math.random() * choice.length)];
}

console.log(computerPlay());