Kenneth Kent
Kenneth Kent

Reputation: 51

What exactly is "anonymous" in the call stack from Chrome devtools?

Whenever I'm debugging in chrome, I mostly see anonymous included in the call stack, what exactly is that anonymous?

Upvotes: 0

Views: 492

Answers (1)

dbonev
dbonev

Reputation: 402

These are anonymous functions like:

() => { ... }

Methods without name.

Upvotes: 2

Related Questions