강의

멘토링

커뮤니티

Inflearn Community Q&A

bbmerong3018's profile image
bbmerong3018

asked

Creating NodeBird SNS with React

2-4. Reusing custom hooks

PostCard.js 보면 Card 의 key의 +c.createAt 은 어떤 의미죠?

Written on

·

374

0

PostCard.js  보면

const PostCard: = post => {
  return (
    <>
      <Card
        key={+post.createAt}

위와 같이 key 항목에 post.createAt 으로 되어있는데

여기서 +는 어떤 의미죠? 궁금해서 올립니다.

답변기다리겠습니다. 감사합니다.

reactjavascript

Answer 2

1

zerocho님의 프로필 이미지
zerocho
Instructor

날짜 객체인 createdAt을 + 연산자로 숫자로 바꾸는 것입니다.

0

dongk님의 프로필 이미지
dongk
Questioner

그렇군요. 답변 감사합니다.

bbmerong3018's profile image
bbmerong3018

asked

Ask a question