Javascript examples for Function:Immediately Invoked Function Expressions IIFE
IIFE immediately invoked function expressions
// function game() { // var score = Math.random() * 10; // console.log(score >= 5); // }/* ww w . ja v a2s .co m*/ // game(); (function() { var score = Math.random() * 10; console.log(score >= 5); })(); //we can pass an argument (function(goodLuck) { var score = Math.random() * 10; console.log(score >= (5 - goodLuck)); })(5);