function Array2DVar(x,y) { // 定義 二維陣列原型this. length = x;this.x = x; // x 維度 長度this.y = y; ... ...
blog.roodo.com