.carousel-item img{
height: 400px;
width: 300px !important;
}
不打印到控制台抱歉,如果它对javascript来说很明显
答案 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()