Skip to content

Instantly share code, notes, and snippets.

@briancavalier
Created March 24, 2015 20:13
Show Gist options
  • Select an option

  • Save briancavalier/0939eb735c717f629c15 to your computer and use it in GitHub Desktop.

Select an option

Save briancavalier/0939eb735c717f629c15 to your computer and use it in GitHub Desktop.
let i=0;
let xs = Observable.fromEvent('click', aDomNode);
// or
// let xs = Observable.fromArray([1,2,3,4]);
for(let x on xs) {
++i;
}
// What does this log?
console.log(i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment