function sumMatrix(A,B){ return A.map((a,i) => a.map((b, j) => b + B[i][j])); }



화살표 무엇?