Skip to content

Instantly share code, notes, and snippets.

@aershov24
Created October 13, 2020 05:28
Show Gist options
  • Select an option

  • Save aershov24/cfeae82859700057818748907e52f3a0 to your computer and use it in GitHub Desktop.

Select an option

Save aershov24/cfeae82859700057818748907e52f3a0 to your computer and use it in GitHub Desktop.
Markdium-14 Fibonacci Interview Questions (SOLVED) To Brush Before Coding Interview
function * iterableObj() {
yield 'This';
yield 'is';
yield 'iterable.'
}
for (const val of iterableObj()) {
console.log(val);
}
// This
// is
// iterable.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment