Different ways to declare variables in JavaScript
In any programming language, variables are named containers containing any type of data at a specific memory location. The name of every variable must be unique. In JavaScript, we can create a variable in 3 ways : using var - var name; // only decl...


