I could use some guidance on specifying a dynamic multi dimensional array in javascript. I understand that javascript does not natively define multi dim arrays, but rather a
To add an element to an array you can use push(val) (to add the back of the array) or unshift(val) to add to the front of the array. So:
var Exforsys=[]; for (i=0; i <4; i++) { Exforsys.push([]); }