applyIt
const manuel = {name: "Manuel", age: 36};
manuel.applyIt(function () {
this.name = "Manuel Santos";
this.age++;
(this as any)["country"] = "Portugal";
});
console.log(manuel)Last updated
const manuel = {name: "Manuel", age: 36};
manuel.applyIt(function () {
this.name = "Manuel Santos";
this.age++;
(this as any)["country"] = "Portugal";
});
console.log(manuel)Last updated