美文网首页
js面试---this(1)

js面试---this(1)

作者: 月光在心中 | 来源:发表于2017-06-30 16:40 被阅读32次

    function a(xx){

         this.x = xx;

         return this;

    };

    var x = a(5);

    var y = a(6);

    console.log(x.x);

    console.log(y.x);

            在这里console.log(x.x);输出undefined,console.log(y.x);输出6。分析如下:

            这个函数通过参数给调用者的x属性赋值,a(5)运行相当于window调用的,this.x相当于声明了一个全局变量x。因为this在这里代表了window,在y=a(6)调用的之后,给this.x这个全局变量赋值为了6,6是一个数值,所以x.x就相当于6.x,所以是undefined。而y=a(6),所以y的值是return返回的this,即window,所以y.x是6。

    相关文章

      网友评论

          本文标题:js面试---this(1)

          本文链接:https://www.haomeiwen.com/subject/tsnbcxtx.html