Console.log在运行时无法正常工作

时间:2018-03-26 22:25:16

标签: javascript function console.log

.carousel-item img{
height: 400px;
width: 300px !important;
}

不打印到控制台抱歉,如果它对javascript来说很明显

2 个答案:

答案 0 :(得分:0)

你确实声明了一个函数,但你没有调用它

function getComputerChoice() {

 const choices = ['r', 'p', 's'];
 console.log(Math.floor(Math.random() * 3));

}

 getComputerChoice()

答案 1 :(得分:0)

您需要记录随机数组,以便从数组中选择其通常的数组[num / string]。

希望这有帮助!

function getComputerChoice() {

 const choices = ['r', 'p', 's'];
 console.log(choices[Math.floor(Math.random() * 3)]);

}

 getComputerChoice()