JS console.log 一个二维矩阵

JS console.log a 2d matrix

我有一个二维数组矩阵:

let matrix = 
[
[a, b, c], 
[d, e, f],
[g, h, i]
].

我如何在控制台上打印新行上的任何数组并且元素之间没有逗号? 像这样:

a b c
d e f
g h i

console.log(matrix.join('\n')) 在新行上打印任何数组:

a, b, c
d, e, f
g, h, i

好的,但我不想要逗号...

通过改进你的代码,也许你可以像这样修改它

const printMatrix = matrix.map((d) => d.join(" ")).join("\n")
console.log(printMatrix);

您可以使用 Javascript 的 console.table() 而不是 console.log()

这将以 table 形式显示您的数组,使其更具可读性和易于分析 这是一个鲜为人知的功能,但在您拥有多维数组时很有用。