I have a javascript variable
var varNameValue = "Name";
Now i want to create another variable using the value of varNameValue
inside the name of the Other
var x(varNameValue)y = "abc";
So that my new variable name becomes
var xNamey = "abc";
Is there any way to do it. Please help.