I need HELP! I'm trying to create a multi-dimensional array and when I create the following, I can't get to any of the values:
theArray = new Array();
theArray[0] = new Array();
theArray[0][0] = new Array();
theArray[0][0][0] = "$1,950.00";
theArray[0][0][1] = "$1,950.00";
Did I set it up in the right way? Just running a 2-d array seems to work fine.
Thanks for the help....
David
theArray = new Array();
theArray[0] = new Array();
theArray[0][0] = new Array();
theArray[0][0][0] = "$1,950.00";
theArray[0][0][1] = "$1,950.00";
Did I set it up in the right way? Just running a 2-d array seems to work fine.
Thanks for the help....
David