0
It is possible to somehow reproduce the scenario below?
module.exports = () => ({
func01: () => {
console.log(1)
},
func02: () => {
this.func01();
}
});
0
It is possible to somehow reproduce the scenario below?
module.exports = () => ({
func01: () => {
console.log(1)
},
func02: () => {
this.func01();
}
});
Browser other questions tagged javascript
You are not signed in. Login or sign up in order to post.
Seems related: Doubt with Javascript Arrow Function
– Icaro Martins