Skip to content

Instantly share code, notes, and snippets.

@cristofersousa
Created March 26, 2017 02:43
Show Gist options
  • Select an option

  • Save cristofersousa/c5fa5a43d32471c1233627dfd18211f3 to your computer and use it in GitHub Desktop.

Select an option

Save cristofersousa/c5fa5a43d32471c1233627dfd18211f3 to your computer and use it in GitHub Desktop.
```
let scope = "global" // declara uma variável global
function checkscope() {
let scope = "local"; // declara uma variável local com o mesmo nome da global
return scope;
}
checkscope();
> saída: "local"
```
@TiagoNunesDeveloper
Copy link

Altere o arquivo para .md

  let scope = "global"      // declara uma variável global
  function checkscope() {   
    let scope = "local";    // declara uma variável local com o mesmo nome da global
    return scope;           
  }

  checkscope();
  > saída: "local"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment