배운것만 간단하게 기록하기 😉
const date = new Date(post.createdAt)
const year = date.getFullYear().toString().slice(-2)
const month = ('0' + (date.getMonth() + 1)).slice(-2)
const day = ('0' + date.getDate()).slice(-2)
const hour = ('0' + date.getHours()).slice(-2)
const minute = ('0' + date.getMinutes()).slice(-2)
const second = ('0' + date.getSeconds()).slice(-2)
const returnDate =
year + '.' + month + '.' + day + '. ' + hour + ':' + minute + ':' + second
// {returnDate} 로 출력해줌
물론 구글링으로 찾아서 했지만, 그래도 조금 수정해서 넣어야 하는 부분이 있는데 그걸 찾느라고 조금 시간이 걸렸다ㅎㅎ 그냥 보면서 고민하는 것보다 일단 수정하면서 해보는 게 중요하다는 걸 느낌. 그리고 그걸 해냈을 때 뿌듯함이란 너무 좋다.
-ing
크롬버그,,(?
계획한 일 다 끝냈으면.. 제발..