i have this :
for (i = 0; i < test.length; i++)
{
document.write( "#" + test[i].number + test[i].name + test[i].height +
test[i].position + test[i].college + "<br>")
}
my question is how can i make 'test' dynamic ? so that i can specify for
example through a form which array (the name) it should be?
tnx
for (i = 0; i < test.length; i++)
{
document.write( "#" + test[i].number + test[i].name + test[i].height +
test[i].position + test[i].college + "<br>")
}
my question is how can i make 'test' dynamic ? so that i can specify for
example through a form which array (the name) it should be?
tnx
Comment