diff --git a/Matrix_Javascript/matrix.js b/Matrix_Javascript/matrix.js new file mode 100644 index 00000000..f33463d8 --- /dev/null +++ b/Matrix_Javascript/matrix.js @@ -0,0 +1,41 @@ +class Matrix { + constructor(row,coloumn){ + this.rows = row + this.col = coloumn + this.matrix=[] + for (let i = 0; i