它要求输入logShout控制台日志,所以我输入了它,但是它不起作用

时间:2019-09-14 06:54:06

标签: node.js

1)logShout(string)在所有大写字母中调用console.log()它的一个参数:      ReferenceError:未定义toUpperCase       在logShout(file://index.html:11:15)       在上下文。 (test / index-test.js:18:5)

return string.toUpperCase()
}
function whisper(string) {
return string.toLowerCase()
}

function logShout (string) {
console.log(toUpperCase);}

1 个答案:

答案 0 :(得分:0)

您发布的代码似乎存在语法错误。请检查一下。 为了快速回答toUpperCase is not defined at logShout,也许您正在对非字符串类型的变量调用toUpperCase