在 JavaScript 中,可以使用 `console.log()` 方法来在控制台输出数组。例如:```javascriptlet arr = [1, 2, 3, 4, 5];console.log(arr);```输出结果:```[1, 2, 3, 4, 5]```