DEV Community

Discussion on: What is the Symbol in JavaScript?

Collapse
 
nestedsoftware profile image
Nested Software • Edited

If you want an overview of symbols in js, I think ES6 in Depth: Symbols is excellent.

One common use case is to define [Symbol.iterator] or [Symbol.asyncIterator] to create custom iterables. e.g: