Difference between var and let in javascript ?
In this article, We’ll see what is the difference between var and let in javascript ? Below an example will clarify the difference. The var statement declares a variable, optionally initializing it to a value Demo: Statement – Var The let statement declares a block scope local variable, optionally initializing it to a value. Demo:Read more about Difference between var and let in javascript ?[…]