var,let and const in javascript
There are three ways of declaring a variable in Javascript.The oldest one is using the var keyword , let and const were introduced in ES6 .
To declare a variable , first write the keyword var,let or const then variable name.
var a = 10;
With var an...
vivek18.hashnode.dev1 min read