es6

    노마드코더 유튜브 클론 보충

    2021.08.08 user athentication 파트 공부 중 부족한 부분 URLsearchParams() html 헤더, 바디, 그리고 github api의 어센티케이션 flow ES6 화살표함수 / await async(promise)와 then의 명확한 차이 2021.8.10 {...} 문법 비구조화할당/ 구조분해 할당 표현식 [a1, a2, a3, a4, ...restOfA] = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] console.log(a1) // 1 console.log(a2) // 2 console.log(a3) // 3 console.log(restOfA) // [4, 5, 6, 7, 8, 9, 10] 전개 연산자 이후 변수가 있을경우 혹은 좌항 우항의 속성이 다를..