Guest User

Untitled

a guest
Nov 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. function* test(){
  2. console.log('when');
  3. while(true){
  4. var fromNext = yield 'a';
  5. console.log(fromNext);
  6. }
  7. }
Add Comment
Please, Sign In to add comment