원래라면 매주 화요일에 가게를 쉬며 같이 푹 쉬었는데 매니저 일을 시작하며 평일엔 일을 해야하니 어쩔 수 없이 공부라도 주말에 쉬엄쉬엄 하자로 바꿨다.
안그러면 연중무휴로 몸이 돌아가다보니 너무 빡세고 점점 쉬는 날을 가지지 않으면 병이나 아픔으로 바로 오니 길게 보고 적당히 휴식하며 해야할 것 같다.
벌써 다음을 생각하고 있긴 한데 나중에 여유 시간이 생긴다면 소설을 쓰거나 언리얼을 만져보고 싶은 생각이 있다
물론 나아아아중에
알고리즘 문제 풀기(프로그래머스)
https://github.com/hoinlee-moi/algorithm_prac
오늘은 앞서 배우고 복습했던 문법들로 대부분 풀 수 있었다!
JS기본문법 다시 공부
https://github.com/hoinlee-moi/ModernJS
React 강의 듣기
https://github.com/hoinlee-moi/React_prac
Array.from()
반복 가능하거나 배열과 유사한 개체에서 Array.from() 얕은 복사된 새 인스턴스를 만든다.
console.log(Array.from('foo'));
// expected output: Array ["f", "o", "o"]
console.log(Array.from([1, 2, 3], x => x + x));
// expected output: Array [2, 4, 6]
// Arrow function
Array.from(arrayLike, (element) => { /* … */ } )
Array.from(arrayLike, (element, index) => { /* … */ } )
// Mapping function
Array.from(arrayLike, mapFn)
Array.from(arrayLike, mapFn, thisArg)
// Inline mapping function
Array.from(arrayLike, function mapFn(element) { /* … */ })
Array.from(arrayLike, function mapFn(element, index) { /* … */ })
Array.from(arrayLike, function mapFn(element) { /* … */ }, thisArg)
Array.from(arrayLike, function mapFn(element, index) { /* … */ }, thisArg)
매개변수
arrayLike
mapFn
(선택)thisArg
(선택)반환 값
새 Array 인스턴스