Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. var a = 1, b = 2, c = 3;
  2.  
  3. var firstFunction = function(){
  4.  
  5. var b = 5, c = 6;
  6. console.log(a, b, c)
  7.  
  8. var secondFunction = function(){
  9.  
  10. var b = 8;
  11. console.log(a, b, c)
  12.  
  13. var thirdFunction = function(){
  14.  
  15. var a = 7, c = 9;
  16. console.log(a, b, c)
  17.  
  18. }
  19. thirdFunction()
  20.  
  21. }
  22. secondFunction()
  23. }
  24.  
  25. firstFunction()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement