Skip to content

Instantly share code, notes, and snippets.

@ACbosong

ACbosong/.js Secret

Created August 10, 2021 10:21
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/a9b434b899f98e6a267cbf5c358c6555 to your computer and use it in GitHub Desktop.
Save ACbosong/a9b434b899f98e6a267cbf5c358c6555 to your computer and use it in GitHub Desktop.
function printV1(){
var v = 2
console.log(`printV1:`, v)
}
printV1() // => pritnV1: 2
try{
console.log(v)// error
} catch {
console.log('not find v');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment