Thanks. That works. Still not exactly sure when I need to use .call
- guessing I might need to do so if my callback function was a regular function:
callback() {}
rather than arrow function:
callback = () => {}
Thanks. That works. Still not exactly sure when I need to use .call
- guessing I might need to do so if my callback function was a regular function:
callback() {}
rather than arrow function:
callback = () => {}