how can I get access my "count" object inside the arrow function ??
const myCounter = {
count: 0,
increment: () => {
this.count += 1
//i know that the arrow functions can't work with "this." ... so how we get access count ??
},
currentValue: () => {
return this.count
}
}