1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Immediately invoked function expressions (IIFE)

Last updated at Posted at 2019-12-13

#Characteristics#

  • IIFE is not reusable as it is not assigned to a variable
  • You can obtain data privacy and not be impacted from outside scope.
// IIFE
function game() {
  var score = Math.random() * 10;
  console.log(score >= 5);
}
game();

(function() {
  var score = Math.random() * 10;
  console.log(score >= 5);
})();


(function(goodLuck) {
  var score = Math.random() * 10;
  console.log(score >= 5 - goodLuck);
})(5);
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?