Console.log 在功能中不工作
Console.log not working while in function
function getComputerChoice() {
const choices = ['r', 'p', 's'];
console.log(Math.floor(Math.random() * 3));
}
如果它对 javascript
来说显然是新的,则不打印控制台抱歉
你确实声明了一个函数但你没有调用它
function getComputerChoice() {
const choices = ['r', 'p', 's'];
console.log(Math.floor(Math.random() * 3));
}
getComputerChoice()
您需要记录随机数组,因此要从数组中选择它通常是数组[num/string]。
希望对您有所帮助!
function getComputerChoice() {
const choices = ['r', 'p', 's'];
console.log(choices[Math.floor(Math.random() * 3)]);
}
getComputerChoice()
function getComputerChoice() {
const choices = ['r', 'p', 's'];
console.log(Math.floor(Math.random() * 3));
}
如果它对 javascript
来说显然是新的,则不打印控制台抱歉你确实声明了一个函数但你没有调用它
function getComputerChoice() {
const choices = ['r', 'p', 's'];
console.log(Math.floor(Math.random() * 3));
}
getComputerChoice()
您需要记录随机数组,因此要从数组中选择它通常是数组[num/string]。
希望对您有所帮助!
function getComputerChoice() {
const choices = ['r', 'p', 's'];
console.log(choices[Math.floor(Math.random() * 3)]);
}
getComputerChoice()