Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

suggestion for iterator example #322

Open
choehn-signogy opened this issue Apr 28, 2023 · 0 comments
Open

suggestion for iterator example #322

choehn-signogy opened this issue Apr 28, 2023 · 0 comments

Comments

@choehn-signogy
Copy link

Just a thought. Instead of
while(true) inside the example for 'Iteration with limited timespan' you could use while(iterator.hasNext()) imho this would give you a clean exit condition instead of relying on an exception:

while(iterator.hasNext()) {
var obj = interval.next();
console.log('value:', obj.value.toString(), 'done:', obj.done);
}

cheers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant