Javascript์์ ์ซ์ ์ฐ์ฐ์ ์๋ํ ๋, undefined
or null
์ด๋ผ์ ๋ํ๋๋ค.
NaN = Not a Number
: ๋ฐ์ดํฐ๊ฐ ์๋ชป๋ ์ํ๋ก ์ซ์๋ก ๋ณํ๋ ๋
index๋ก ๋ด๊ฐ ์ํ๊ณ ์ ํ๋ ์ ์ ์ฐพ์์ ์์ผ๋ฉด "" ์ด๊ฒ ํ์ง๋ง, ์ฌ๊ธฐ์ ๋ฌธ์ ๊ฐ ์๊ฒผ๋๋ณด๋ค,,
cell.getValue()๊ฐ undefined
or null
or ๋ฐ์ดํฐ ์์ฒด๊ฐ ๋น์ด์์ด์
๋ฐ์ํ ์ ์๋ค๊ณ ํ๋ค ,,,!!
<tbody>
{visitTable.getRowModel().rows.map((row,rowIndex) => (
<RowTr key={row.id}>
{row.getVisibleCells().map((cell,cellIndex) => (
<MainStatsCell key={cell.id}>
{rowIndex === visitTable.getRowModel().rows.length-1 && cellIndex === 0
? "": String(cell.getValue())}
</MainStatsCell>
))}
</RowTr>
))}
</tbody>