You have already completed these exercises!
Do you want to take them again?
You completed the JS Scope Exercises from W3Schools.com
Share on:
Consider the following code:let x = 5;{ let x = 3;}alert(x);What will be the alerted result?
let x = 5;{ let x = 3;}alert(x);