javascript how to name a variable with another variable code example
Example: js changing name variable
window[someVaribale]="foo";
window["name_" + someVariable]="foo";
window[someVaribale]="foo";
window["name_" + someVariable]="foo";