📜  javascript forloop 表 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:02.385000             🧑  作者: Mango

代码示例1
function get_table(data) {
    let result = [''];
    for(let row of data) {
        result.push('');
        for(let cell of row){
            result.push(``);
        }
        result.push('');
    }
    result.push('
${cell}
'); return result.join('\n'); }