2022-10-18
09:00-17:00 / 17:00-19:00 / 21:00~22:00 / 23:00-24:00
work
const makeTreeLayout = useCallback(
(items, id = null, link = 'parentId') =>
items
.filter((item) => item[link] === id)
.map((item) => ({
...item,
children: makeTree(items, item.Id),
})),
[]
);
일렬로 온 리스트 배열 트리구조로 만들기 후후🌝
study
:
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/padStart
const str1 = '5';
console.log(str1.padStart(2, '0'));
// expected output: "05"
앞에 0 붙이고 싶을 때
setInterval(() => console.log(new Date()), 2000);
setInterval() 2초마다 출력
new Date()로 디데이 계산기 만드는 데 꽤 오래 걸림^^
diff
Monday/ Wednesday(Tuesday)/ Thursday 19:45-20:15 (English with Clarisse)
Tuesday / Thursday 21:00 ~ 22:00 (어깨 수영 보류)
Saturday 09:00~10:00
Sunday
Life is a series of building,testing,changing and iterating.
역시 겨울은 집이 최고....💨
점심시간마다 알고리즘 풀려고 했는데 쉽지 않아🌱 🌝