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

将自调用函数中的构造函数暴露在全局中,算闭包吗

将自调用函数中的构造函数暴露在全局中,算闭包吗

神不在的星期二 2019-03-26 21:19:52
    (function(){        function Student(){            this.name='stu';            this.age='18';        }        window.Student=Student;    })();        var s=new Student();    console.dir(s);    1,这种形式算闭包吗 ?    2,自调用函数算定义在全局中还是在哪呢?
查看完整描述

3 回答

?
慕田峪4524236

TA贡献1875条经验 获得超5个赞

  1. 不算闭包,只是给全局作用域上的window添加了属性而已。

    var s=new window.Student();
  2. 没看懂问题


查看完整回答
反对 回复 2019-03-29
?
凤凰求蛊

TA贡献1825条经验 获得超4个赞

词法作用域中使用的域,是变量在代码中声明的位置所决定的。嵌套的函数可以访问在其外部声明的变量。

function init() {

    var name = "Mozilla"; // name is a local variable created by init

    function displayName() { // displayName() is the inner function, a closure

        alert (name); // displayName() uses variable declared in the parent function    

    }

    displayName();    

}

init();

建议系统地了解一下


查看完整回答
反对 回复 2019-03-29
  • 3 回答
  • 0 关注
  • 816 浏览
慕课专栏
更多

添加回答

举报

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