Guest User

Untitled

a guest
Jul 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function D(){
  2. function a(){
  3. var c = 5;
  4. };
  5.  
  6. function b(){
  7. alert(c);
  8. };
  9. }
  10.  
  11. function D(){
  12. var c;
  13. function a(){
  14. c = 5;
  15. };
  16.  
  17. function b(){
  18. alert(c);
  19. };
  20. }
Add Comment
Please, Sign In to add comment