Update README.md

master
Matt Huntington 8 years ago committed by GitHub
parent 1285cb1eb9
commit 378ac3dec9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -163,7 +163,7 @@ IIFE - Immediately Invoked Function Expression - often used to create a block of
```JavaScript
var a = 2;
(function IIFE(){
(function(){
var a = 4;
console.log ('Inside the IFFE, the value of a is', a ); //"Inside the IFFE, the value of a is 4"
})();

Loading…
Cancel
Save