你不知道的JS系列 ( 22 ) - this new 绑定
2021-04-10 06:26
标签:class function code his foo color 影响 方法 函数调用 使用 new 来调用 foo() 时,我们会构造一个新对象并把它绑定到 foo() 调用的 this 上。new 是最后一种可以影响函数调用时 this 绑定行为的方法,我们称之为 new 绑定 你不知道的JS系列 ( 22 ) - this new 绑定 标签:class function code his foo color 影响 方法 函数调用 原文地址:https://www.cnblogs.com/wzndkj/p/12432504.htmlsomething = new MyClass(..);
function foo(a) {
this.a = a;
}
var bar = new foo(2);
console.log(bar.a); //2
文章标题:你不知道的JS系列 ( 22 ) - this new 绑定
文章链接:http://soscw.com/index.php/essay/73670.html