Advertisement
kiril_dishliev

JavaScript function

Nov 21st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   // IIF function, зарежда се първа и се изпълнява без да се вика
  2.     (function () {
  3.         console.log('a1')
  4.     }());
  5.      
  6.     //-------------------------------------------
  7.       function a () {
  8.             console.log('a');
  9.         }
  10.       var a = function() {
  11.             console.log('a1');
  12.       }
  13.  
  14.       a();
  15.  
  16.     //result a1, защото var a =.... презаписва function a()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement