Untitled

Anonymous
plain_text
10/28/2021 10:51 AM
348 B
19
Indexable
function myLocalScope() {
  // Only change code below this line
  let myVar;
  console.log('inside myLocalScope', myVar);
}
myLocalScope();

// Run and check the console
// myVar is not defined outside of myLocalScope
console.log('outside myLocalScope', myVar);
Editor is loading...