var mas = []; for (i=0; i < 2; i++) { for (j=0; j < 2; j++) { if (!mas[i]) mas[i] = []; mas[i][j] = ""+i+j; } } alert(mas);