在单个 console.log 中输出字符串和对象

Output string and object in a single console.log

我正在使用 node.js。

rows 是一个对象。我想查看对象的内容。

console.log("Contents of rows: ");
console.log(rows);

以上代码有效。然后,我走捷径使用

console.log("Contents of rows: " + rows);

现在,这不起作用。是否可以在一行中完成上述工作?

console.log("String", 对象, 数组);