将名为functionDeclaration
的函数转换为匿名函数表达式,并将其赋给名为myFunc.
的变量
function functionDeclaration() {
let myFunc = str
return "Hi there!";
}
console.log(myFunc())
我刚开始写代码。我做错了什么?它应该打印“Hi there!”,但是一直给我一个引用错误消息。
谢谢你的帮助!
将名为functionDeclaration
的函数转换为匿名函数表达式,并将其赋给名为myFunc.
的变量
function functionDeclaration() {
let myFunc = str
return "Hi there!";
}
console.log(myFunc())
我刚开始写代码。我做错了什么?它应该打印“Hi there!”,但是一直给我一个引用错误消息。
谢谢你的帮助!
6条答案
按热度按时间h79rfbju1#
你的函数表达式可能是这样的,
arknldoa2#
不确定
let myFunc = str
的目的是什么,但是给予一试这个-7rfyedvj3#
您的回答:
请阅读构造函数、声明和表达式
n3h0vuf24#
它与以下内容相同:
axzmvihb5#
函数functionDeclaration(){ return“你好!”}
const myFunc =函数声明;控制台日志(myFunc())
35g0bw716#
假设
functionDeclaration
定义如下:这是一个函数表达式: