Skip to content

Instantly share code, notes, and snippets.

@hk-skit
Last active January 27, 2019 05:08
Show Gist options
  • Save hk-skit/34503739086ef553ef9e81fad9dd2b6d to your computer and use it in GitHub Desktop.
Save hk-skit/34503739086ef553ef9e81fad9dd2b6d to your computer and use it in GitHub Desktop.
Data Structures with Iterable Protocol
class IteratorDemo {
// Iterator Method with @@iterator key
// i.e. Symbol.iterator constant
[Symbol.iterator]() {
// Method stub which returns an iterator object.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment