JS 浏览器和 node 脚本 this 的区别

function test() {

  var name = 'tom';


  var obj = {

    name: 'jack',

    nick: 'halun',

    frind: this.name+"  "+this.nick,

    print: function (){

      console.log(this.name);

    }

  }


  console.log(obj.frind);

  obj.print();

}

test();

在给 obj 赋值时,node 环境下无法访问到 this.namevv
请问这是什么原因

噜噜哒
浏览 536回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript