Guest User

Untitled

a guest
Aug 15th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. function* runRanRunV2() {
  2. var fromOutSide = yield 1;
  3. console.log(fromOutSide);
  4. }
  5.  
  6. var a = runRanRunV2()
  7. var r = a.next(2)
Add Comment
Please, Sign In to add comment