In JavaScript I have a for
snippet to create new input elements
for(var g = 0; g < psi.length; g++) {
var newtextLink+(g+1)= document.createElement('input');
//continue with setting attributes
}
I want to put together the word newtextLink
and the var g
to have something like newtextLink2
everytime for
is executed...How can I achieve that?