Skip to content

Commit

Permalink
Update index.md to match function names and variables with spanish
Browse files Browse the repository at this point in the history
  • Loading branch information
teledirigido authored Oct 30, 2023
1 parent ff161af commit 8774921
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions files/es/web/javascript/closures/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@ En esencia, los bloques se tratan finalmente como ámbitos en ES6, pero sólo si
Considera el siguiente ejemplo:

```js
function makeFunc() {
const name = "Mozilla";
function displayName() {
function creaFunc() {
const nombre = "Mozilla";
function muestraNombre() {
console.log(name);
}
return displayName;
}

const myFunc = makeFunc();
myFunc();
const miFunc = makeFunc();
miFunc();
```

Si se ejecuta este código tendrá exactamente el mismo efecto que el ejemplo anterior: se mostrará el texto "Mozilla" en un cuadro de alerta de Javascript. Lo que lo hace diferente (e interesante) es que la función externa nos ha devuelto la función interna `muestraNombre()` antes de ejecutarla.
Expand Down

0 comments on commit 8774921

Please sign in to comment.