this - mmedrano9438/peripheral-brain GitHub Wiki
'this' is a reference to an object.
const test = { prop: 42, func: function () { return this.prop; }, };
console.log(test.func()); // Expected output: 42
'this' is a reference to an object.
const test = { prop: 42, func: function () { return this.prop; }, };
console.log(test.func()); // Expected output: 42