Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ACbosong

ACbosong/.js Secret

Created August 10, 2021 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ACbosong/caabc242fbd0350fae86c5d327bebd74 to your computer and use it in GitHub Desktop.
Save ACbosong/caabc242fbd0350fae86c5d327bebd74 to your computer and use it in GitHub Desktop.
var g = 0
function printG(){
g = 1
console.log(`printG: `, g)
}
printG() // => printG: 1
console.log(`Global G:`, g) // => Global G: 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment