Existing code:
var e1;
var e2;
var e3;
var e4;
var e5;
var e6;
var e7;
Is there a way to declare the variables that is like "var e1 to var e50" ? I have to make a bunch of variables for my program and it is tiresome to have to type each one.
Thanks
var e = [];?var vars = { e1: '', e2: '', ...}. usevars.e1, etc.