Testing my array

wxdqz

New Member
I am trying to create a way to test to see what is stored in my arrays, would this work.
I have a .js that contains the below function:

var test;

function Testing(){
for(var i=0;i<test.length;i++){
test = i;
document.write(test);
}

What do I need to write in my html to call this function?
 
Back
Top