让我们可以不加 new 地新建实例.
首先, 需要使用function
而不是class
.
function Fish() {
console.log(this instanceof Fish)
}
测试一下
Fish()
>> false
<- undefined
new Fish()
>> true
<- Fish {}
所以, 可以这样
function Dog() {
if (!(this instanceof Dog)) {
return new Dog()
}
return this
}
试试
Dog()
<- Dog {}
new Dog()
<- Dog {}
耶✌️
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。