i am having problems in creating the two dimensional array right now to create the histogram.
this is what i have so far
Code:
function createTwoDimArray(maxRows, maxCols) {
var newArray = new Array(maxRows);
for (var row=0; row<maxRows; row++) {
newArray[row]
Leave a comment: