Skip to content

Instantly share code, notes, and snippets.

@anhnguyen1618
Last active December 19, 2019 16:45
Show Gist options
  • Save anhnguyen1618/12ffa5d815db92d4ef9af8c3ccd4a3a4 to your computer and use it in GitHub Desktop.
Save anhnguyen1618/12ffa5d815db92d4ef9af8c3ccd4a3a4 to your computer and use it in GitHub Desktop.
var text= "1";
function f() {
console.log(text);
var text = "2";
console.log(this.text);
function g() {
console.log(text);
}
g()
}
f()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment