new.target is a new “magical” value available in all functions, thoughin normal functions it will always be undefined. In any constructor,new.target always points at the constructor that new actuallydirectly invoked.
class Parent { constructor() { if (new.target === Parent) { console.log( "Parent instantiated" ); } else { console.log( "A child instantiated" ); } } } class Child extends Parent {} var a = new Parent(); // Parent instantiated var b = new Child(); // here new.target is undefined // A child instantiated
When the class is extended, it will show undefined in the parent class construcotr().
转载于:https://www.cnblogs.com/Answer1215/p/5582031.html
原文链接:https://blog.csdn.net/weixin_30342827/article/details/97760788
本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
还没有人抢沙发呢~