Last active
January 27, 2017 13:03
-
-
Save digitalbocca/8edd942e7831aba2e7d956a473bc3407 to your computer and use it in GitHub Desktop.
Função Anônima que Inicia Automaticamente e Deixa Suas Variaveis Locais - IIFE Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* AutoStart.js | |
* | |
* IIFE - INICIA O CÓDIGO E DEIXA AS VARIAVEIS LOCAIS | |
* | |
* Apenas Exemplo - NÃO USE EM PRODUÇÃO | |
* (c)2017 - http://estudiodigitalbocca.com.br | |
* | |
* ES6 | |
*/ | |
(function(){ | |
console.log("(c)2017 - http://estudiodigitalbocca.com.br") | |
}()) | |
/** | |
* LINK DE UM ARTIGO QUE TRATA SOBRE IIFE | |
* http://imasters.com.br/front-end/javascript/sobre-funcoes-imediatas-javascript-iife/ | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment