this Keyword in Different Contexts
Which method will not work as expected?
const module = {
value: 42,
getValue() {
return this.value;
},
setValue(value) {
this.value = value;
},
reset: () => {
this.value = 0;
}
};
const module = {
value: 42,
getValue() {
return this.value;
},
setValue(value) {
this.value = value;
},
reset: () => {
this.value = 0;
}
};