tirando algumas besteiras mais aprofuncadas
nem de longe são besteiras:
let x = {
i: 10,
a: () => console.log(this.i, this),
b: function() {
console.log(this.i, this);
}
}
x.a();
x.b();
tirando algumas besteiras mais aprofuncadas
nem de longe são besteiras:
let x = {
i: 10,
a: () => console.log(this.i, this),
b: function() {
console.log(this.i, this);
}
}
x.a();
x.b();