https://chrome.google.com/webstore/detail/momentum/laookkfknpbbblfpciffpaejjkokdgca/related?hl=ko Momentum Replace new tab page with a personal dashboard featuring to-do, weather, and inspiration. chrome.google.com 프로젝트의 마지막 단계 이런것을 만드는것을 배우게 될것이다. 프론트앤드 개발자는 자바스크립트만 쓸수있어서 장점이자, 단점이다.
https://www.youtube.com/playlist?list=PLLUCyU7SBaR7tOMe-ySJ5Uu1UlEBznxTr 노마드 코더 바닐라 자바스크립트 Nomad Coder www.youtube.com 수업 준비물 깃허브, 크롬, 비주얼 스튜디오 설치 -> 미니 앱을 만들것 https://chrome.google.com/webstore/detail/momentum/laookkfknpbbblfpciffpaejjkokdgca/related?hl=ko Momentum Replace new tab page with a personal dashboard featuring to-do, weather, and inspiration. chrome.google.com 프로젝트의 마지막 단계 이런것을 만드는것을..
배열과 함수도 객체이다. 통틀어 객체라는 자료열이다. const apple = 사과 const ape = 수박 const pe = 딸기 const ale = 포도 이렇게 저장하는것 보다 배열을 이용하면 쉽게 정리가 가능하고 가독성도 좋다. const fruits = [사과, 수박, 딸기, 포도] 배열안에 요소가 4개가 들어있는것. console.log(fruits[0]); 이렇게 저장된 값에 접근할 수 있다. const arrayOfArray = [[1, 2, 3], [4, 5]] arrayOfArray[0] //[1, 2, 3] const a = 10; const b = 20; const variableArray = [a, b, 30] variableArray[1] //20 출력 이유 = [0, 1, ..