Is there any way to use the data from one variable in the declaration of another variable? It is the same concept of coercing strings, just in the variable declaration. For example, if I wanted to create a variable called user1, is there any way to do it somehow like this:
var i = 1; // Creates variable with value of 1
var user + i = "John"; // Creates variable with name of user1 (because i has a value of 1)