5 lines
90 B
JavaScript
5 lines
90 B
JavaScript
var obj = function (obj) {
|
|
obj["x" + this.foo] = "heh";
|
|
return obj;
|
|
}.call(this, {});
|