Created
March 22, 2019 08:43
-
-
Save tomi/b2cb2d70aa26e60f1fe9ec75459c4490 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var someArray = [1, 2]; | |
var iterator = someArray[Symbol.iterator](); | |
iterator.next(); // { value: 1, done: false } | |
iterator.next(); // { value: 2, done: false } | |
iterator.next(); // { value: undefined, done: true } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment