Last active
August 29, 2015 14:22
-
-
Save pablomdo/84b522161b06b048839c to your computer and use it in GitHub Desktop.
Exemplo de como funciona a definição de escopo em 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
// x está no escopo global | |
var x = 1; | |
// Uma function cria um novo escopo | |
function test() { | |
// y só existe dentro de test | |
var y = 2; | |
// x é acessível de dentro de test | |
console.log(x + y); // 3 | |
} | |
// y não pode ser acessada de fora de seu escopo | |
console.log(y); // undefined |
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
/** | |
* Cria um somador. | |
* | |
* @param {Number} x - Número que será somado. | |
* @returns {Function} - Function que soma x com um segundo número | |
* fornecido. | |
*/ | |
function criaSomador(x) { | |
var primeiro = x; | |
// Esta function aninhada é uma closure | |
function soma(segundo) { | |
// A closure "lembra" do valor da variável 'primeiro' | |
// mesmo depois da function 'criaSomador' já ter executado | |
return primeiro + segundo; | |
} | |
// Retorna a function que faz a soma | |
return soma; | |
} | |
// Cria um somador de 1 | |
var soma1 = criaSomador(1); | |
soma1(1); // 2 | |
soma1(2); // 3 |
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
if (true) { | |
var x = 1; | |
} | |
console.log(x); // 1 | |
function test() { | |
var y = 2; | |
} | |
console.log(y); // undefined |
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
var x = 1; | |
// Em tempo de execução, primeiro é feita a | |
// declaração e depois a atribuição | |
var x; | |
x = 1; | |
// Hoisting também se aplica a funções nomeadas | |
testA(); // teste a | |
function testA() { | |
console.log('teste a'); | |
} | |
// Em tempo de execução 'testA' é "içado" para | |
// o início do escopo | |
function testA() { | |
console.log('teste a'); | |
} | |
testA(); // teste a | |
// Mas não para funções anônimas, cuidado! | |
testB(); // TypeError: testB is not a function | |
var testB = function () { | |
console.log('teste b'); | |
} | |
// O que realmente acontece é: | |
var testB; | |
testB(); // 'testB' é undefined neste ponto | |
testB = function () { | |
console.log('teste b'); | |
} |
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
// Exemplo de função imediata | |
(function () { | |
// Mensagem só existe dentro deste escopo | |
var mensagem = 'Este código executa assim que esta função é criada.'; | |
console.log(mensagem); | |
})(); | |
console.log(mensagem); // ReferenceError: mensagem is not defined | |
// Uma função imediata é o equivalente a fazer isto: | |
var teste = function () { | |
// ... | |
}; | |
teste(); | |
// No jQuery, isto não é uma função imediata | |
// pois só executa após o DOM ter carregado | |
$(function () { | |
// ... | |
}); | |
// Pois na verdade não passa de um atalho para isso: | |
$(document).ready(function(){ | |
// ... | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment