Iterable Protocol
Everything on SkillVeris tagged Iterable Protocol — collected across the glossary, study notes, blog, and cheat sheets.
2 resources across 1 library
Interview Questions(2)
What Are Generators in JavaScript and How Do They Work?
A generator is a special function, declared with function*, that can pause its own execution at yield points and resume later exactly where it left off, produc…
What Are Symbols in JavaScript and Why Use Them?
A Symbol is a primitive value created with Symbol(), guaranteed to be unique even if two symbols share the same description, used mainly as collision-free obje…