Skip to content

Instantly share code, notes, and snippets.

@digitalbocca
Last active January 27, 2017 13:03
Show Gist options
  • Save digitalbocca/8edd942e7831aba2e7d956a473bc3407 to your computer and use it in GitHub Desktop.
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
/**
* 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