Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Created April 23, 2020 14:37
Show Gist options
  • Save NyaGarcia/73d7de00cf78c100de53888ce2e8bb1b to your computer and use it in GitHub Desktop.
Save NyaGarcia/73d7de00cf78c100de53888ce2e8bb1b to your computer and use it in GitHub Desktop.
Creating an Observable with generate(), passing an object as parameter
const evenNumber$ = generate({
initialState: 2,
condition: x => x <= 10,
iterate: x => x + 2
});
evenNumber$.subscribe(number => console.log(number));
// Output: 2, 4, 6, 8, 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment