12 lines
110 B
JavaScript
12 lines
110 B
JavaScript
"use strict";
|
|
|
|
const object = {
|
|
test() {
|
|
new.target;
|
|
},
|
|
|
|
test2: function() {
|
|
new.target;
|
|
},
|
|
}
|