#first-blog
Read more stories on Hashnode
Articles with this tag
Global and local scope let a = 10 const b = 20 Var c = 30 console.log(a) console.log(b) console.log(c) If var is working then why let and...