How to check if my {row.storeId} is null or empty and if that's the case, I wanted to place NA in <TableCell>.
{props.tableData.map(row => (
<TableRow key={row.storeId}>
<TableCell>{row.name}</TableCell>
<TableCell>{row.storeId}</TableCell>
<TableCell>{concatenateAddress(row.address)}</TableCell>
<TableCell>{capabilitiesColumn(row.capabilities)}</TableCell>
</TableRow>
))}