UNPKG

@shamala/helpercci

Version:

Helper functions to support methods

7 lines (6 loc) 155 B
module.exports = function printMatrix(matrix) { for (let i = 0; i < matrix.length; i++) { console.log([...matrix[i]]); console.log("\n"); } };