码迷,mamicode.com
首页 > 其他好文 > 详细

new.target元属性 | 分别用es5、es6 判断一个函数是否使用new操作符

时间:2018-03-07 13:21:25      阅读:398      评论:0      收藏:0      [点我收藏+]

标签:箭头   comm   fine   struct   额外   箭头函数   实例   get   var   

  函数内部有两个方法 [[call]] 和 [[construct]] (箭头函数没有这个方法),当使用new 操作符时, 函数内部调用 [[construct]], 创建一个新实例,this指向这个实例; 不使用new 操作符时, 函数内部调用 [[call]]

    判断一个函数是否使用new操作符,ES5的方法:

function Person(name) {
    if (this instanceof Person) {
        this.name = name;
    } else {
        throw new Error("You must use new operator");
    }
}
var p = new Person("James"); // ok
var p = Person("James"); // error
// 但是可以通过其他方式绕过这种错误
var notPerson = Person.call(p, "Nicholas"); // works

 

ES6 通过new.target 来判断是否使用new,元属性 是指一个提供目标相关额外信息(比如new)的非对象属性。

function Person(name) {
    if (typeof new.target !== "undefined") {
        this.name = name;
    } else {
        throw new Errow("You must use new operator");
    }
}
var p = new Person("James"); // ok
var notPerson = Person.call(p, "Louis"); // error 

 

 

new.target元属性 | 分别用es5、es6 判断一个函数是否使用new操作符

标签:箭头   comm   fine   struct   额外   箭头函数   实例   get   var   

原文地址:https://www.cnblogs.com/liujinyu/p/8521576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!