Skip to content

Instantly share code, notes, and snippets.

@nairihar
Created May 20, 2018 14:15
Show Gist options
  • Save nairihar/d9644353c7548bc0183da2bb6fb85181 to your computer and use it in GitHub Desktop.
Save nairihar/d9644353c7548bc0183da2bb6fb85181 to your computer and use it in GitHub Desktop.
Async Generator, Async Iterator in NodeJS v10, medium
const arr1 = range(1, 3);
(async () => {
for await (let n of arr1) {
console.log(n);
}
})();
// 1, 2, 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment