Advertisement
Guest User

Untitled

a guest
Dec 12th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function(){
  2.     var algo= "algo"
  3.     window.minhaFuncao = function(){
  4.         alert("oi");
  5.     }
  6. })();
  7. //a partir daqui estou fora do escopo
  8. function funcaoForaDoEscopo(){
  9.     alert(minhaFuncao());
  10. }
  11.  
  12. funcaoForaDoEscopo()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement