0
how to design a single program that have three array within a single function and a form
2 Respuestas
+ 5
var function single(){
var a = [], b = [], c = [];
var form = "Hi, I am a form";
}
Literally here you can see a single function and three arrays and a form inside of it :)