要在不同的行上使用相同的console.log
打印多个数组,你可以将每个数组作为单独的参数传递给console.log
函数。以下是一个示例代码:
const array1 = [1, 2, 3];
const array2 = ['a', 'b', 'c'];
const array3 = [true, false, true];
console.log(array1);
console.log(array2);
console.log(array3);
在这个例子中,console.log
被调用了三次,每次打印一个数组。由于console.log
默认会在每个参数之间添加换行符,因此每个数组都会在新的行上打印。
如果你想要在一个console.log
调用中打印多个数组,并且希望它们各自占据一行,你可以使用模板字符串来格式化输出,如下所示:
const array1 = [1, 2, 3];
const array2 = ['a', 'b', 'c'];
const array3 = [true, false, true];
console.log(`${array1}\n${array2}\n${array3}`);
在这个例子中,模板字符串允许你通过\n
插入换行符,从而确保每个数组都在新的一行上打印。
这种方法的优势在于它简洁且易于理解,同时也提供了灵活性,因为你可以通过修改模板字符串来改变输出的格式。
参考链接:
领取专属 10元无门槛券
手把手带您无忧上云