Guest User

Untitled

a guest
Jan 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. florida();
  2. washington()
  3. console.log(law); //has access to law as it was created in a function with no var
  4.  
  5. function florida(){
  6. law = 'No drinking in public places'; //in the global scope as no var used
  7. console.log(law);
  8. }
  9. function washington(){
  10. console.log(law) //has access to law as it was created in a function with no var
  11. }
Add Comment
Please, Sign In to add comment