如果您执行console.table(['hello', 'table'])
,那么您会得到
┌─────────┬─────────┐
│ (index) │ Values │
├─────────┼─────────┤
│ 0 │ 'hello' │
│ 1 │ 'there' │
└─────────┴─────────┘
我不希望在字符串'
周围加上引号。如何删除它,这样我得到
┌─────────┬───────┐
│ (index) │ Value │
├─────────┼───────┤
│ 0 │ hello │
│ 1 │ there │
└─────────┴───────┘
答案 0 :(得分:0)