Guest User

Untitled

a guest
Mar 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. window.onload = function() {
  2.  
  3. console.log("--------------------");
  4.  
  5.  
  6. function* saiyazinList(){
  7. yield "最強のベジータ様";
  8. yield "カカロット";
  9. yield "ご飯";
  10. yield "トランクス";
  11. }
  12.  
  13. for(let saiya of saiyazinList()){
  14. console.log(saiya);
  15. }
  16.  
  17.  
  18. console.log("--------------------");
  19.  
  20. }
Add Comment
Please, Sign In to add comment