函数可以被当作普通函数使用,也可以当作构造函数使用new关键字调用,有时候我们编写一个函数明确就是用来当做构造函数的,可无法限制其他人对此函数的调用方式。如下:
function Person (name, age) {
this.name = name
this.age = age
}
const p1 = new Person('sam', 20)
console.log(p1)// 输入p1对象结构
const p2 = Person('tom', 15)// 内部使用了this,这种调用方式相当于给window对象添加了name和age属性
console.log(p2)//输出undefined
使用new.target来判断函数的调用方式,如果函数是使用new调用的,new.target会返回函数本身,如果不是返回undefined
function Person (name, age) {
if (new.target === undefined) {
throw new Error('请使用new调用')
}
this.name = name
this.age = age
}
const p2 = Person('tom', 15) // 抛出异常