📅  最后修改于: 2022-03-11 15:02:02.385000             🧑  作者: Mango
function get_table(data) {
let result = [''];
for(let row of data) {
result.push('');
for(let cell of row){
result.push(`${cell} `);
}
result.push(' ');
}
result.push('
');
return result.join('\n');
}