Advertisement
Guest User

for loop global

a guest
May 28th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. (function(){
  2.  
  3. for(var h=0; h<10; h++) {
  4. console.log(h);
  5. }
  6. for(g=0; g<10; g++) {
  7. console.log(g);
  8. }
  9.  
  10. })();
  11.  
  12. console.log("h = "+h);
  13. console.log("g = "+g);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement