在控制台中将数组写为表:
console.table(["Audi", "Volvo", "Ford"]);
亲自试一试 »
在控制台中将对象写为表:
console.table({firstname:"John", lastname:"Doe"});
亲自试一试 »
下面有更多示例。
这个table()
方法将表写入控制台。
您可以通过单击列名称对表进行排序。
console.table(
tabledata, tablecolumns)
Parameter | Description |
tabledata | Required. The data to fill the table with. |
tablecolumns | Optional. An array with the names of the table columns. |
使用对象数组:
const car1 = {name:"Audi", model:"A4"}
const car2 = {name:"Volvo", model:"XC90"}
const car3 = {name:"Ford", model:"Fusion"}
console.table([car1, car2, car3]);
亲自试一试 »
仅在表中包含 "model" 列:
const car1 = {name:"Audi", model:"A4"}
const car2 = {name:"Volvo", model:"XC90"}
const car3 = {name:"Ford", model:"Fusion"}
console.table([car1, car2, car3],
["model"]);
亲自试一试 »
console.table()
所有现代浏览器都支持:
Chrome | Edge | Firefox | Safari | Opera |
Yes | Yes | Yes | Yes | Yes |
console.table()
Internet Explorer 11(或更早版本)不支持。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!