12 lines
126 B
JavaScript
12 lines
126 B
JavaScript
function Foo() {
|
|
new.target;
|
|
}
|
|
|
|
Foo.prototype.test = function() {
|
|
new.target;
|
|
};
|
|
|
|
var Bar = function() {
|
|
new.target;
|
|
};
|