#console
Read more stories on Hashnode
Articles with this tag
We can declare a new variable in JavaScript by using var, let, orconst keywords. For Example, var a = 10; let b = 20; const c = 40; I was playing...