为了账号安全,请及时绑定邮箱和手机立即绑定

js 函数和变量的hoisting,第二段里面的函数为啥fly没有提升?

js 函数和变量的hoisting,第二段里面的函数为啥fly没有提升?

牛魔王的故事 2018-08-27 12:34:46
函数声明方式提升【成功】function test(){     foo();    function foo(){        console.info("I am foo!")     } } test();函数表达式方式提升【失败】function test(){     foo();//Uncaught TypeError: foo1 is not a function(…)     fly();//VM83:1 Uncaught ReferenceError: fly is not defined(…)    var foo =function fly(){        console.info("I am foo!")     } } test();第二段里面的函数为啥fly没有提升,不也是声明式的吗?为啥一个是TypeError,fly是ReferenceError?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 444 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信