#scope-is-javascript
Read more stories on Hashnode
Articles with this tag
const a = 1; let b = 2; var c = 3; if(true){ const a = 10 let b = 20 var c = 30 console.log('Inside Block value of a = ' ,a ) ...