Skip to content

Instantly share code, notes, and snippets.

@ACbosong

ACbosong/.js Secret

Created August 10, 2021 10:25
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/82e81afe3f18ed91e6c3bc34cbaa7471 to your computer and use it in GitHub Desktop.
Save ACbosong/82e81afe3f18ed91e6c3bc34cbaa7471 to your computer and use it in GitHub Desktop.
function printL1(){
let l = 3;
console.log(`printL1:`, l);
}
printL1() // => printL1: 3
try{
console.log(`Global l:`, l); //error
} catch {
console.log(`not find l`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment