Reputation: 51
Whenever I'm debugging in chrome, I mostly see anonymous included in the call stack, what exactly is that anonymous?
Upvotes: 0
Views: 492
Reputation: 402
These are anonymous functions like:
() => { ... }
Methods without name.
Upvotes: 2