📜  在 js 中使用 if 条件映射 - Javascript 代码示例

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

代码示例1
row = this.props.cells.map(function(cell, i) {

        if(cell.URL != null && cell.URL.length > 0){
            return {cell.Text};        
        }
        else {
            return {cell.Text};
        }

    }.bind(this));