강의

멘토링

로드맵

Inflearn Community Q&A

snu90302863's profile image
snu90302863

asked

Bite-sized React.js: From Basics to Practice

12.10) Implementing Home Page 1. UI

그 달의 마지막 날이 작성이 되지 않습니다.

Written on

·

359

0


페이지 구현- 일기쓰기 (/new) 강의의 
40분 48초 부터 onClick={handleSubmit}에서 

9월 30일이나 10월 31일같이 
그 달의 마지막날은 new(새로운 글)이 작성이 되지 않습니다..
이유가 무엇인가요? 





const getStringDate = (date) => { 
    return date.toISOString().slice(0,10);
}

export const getStringDate = (date) => {

  let year = date.getFullYear();

  let month = date.getMonth() + 1;

  let day = date.getDate();

  if (month < 10) {

    month = 0${month};

  }

  if (day < 10) {

    day = 0${day};

  }

  return ${year}-${month}-${day};

};

reactnodejsjavascript

Answer 2

0

HongWon Kim님의 프로필 이미지
HongWon Kim
Questioner

너무 감사합니다!!

snu90302863's profile image
snu90302863

asked

Ask a question