get min/max value in 2d array
not sure what you are exactly looking for since you are not providing a sample cvs…
finding the min/max of a simple array goes like this. hopefully that will get you started…
var myMax = Math.max.apply(Math, array);
and
var myMin = Math.min.apply(Math, array);