분류 전체보기 (180) 썸네일형 리스트형 Visual Studio Code 설치 code.visualstudio.com/ [vue.js] vue 설치 npm install -g @vue/cli Node, NPM 설치 설치 brew install node확인 node -v npm -v Homebrew 설치 설치 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"확인 brew --version Xcode command line tool 설치 xcode-select --install [js] 날짜 let today = new Date(); // Thu Oct 29 2020 13:29:51 GMT+0900 (대한민국 표준시) let year = today.getFullYear(); // 년도 let month = today.getMonth() + 1; // 월 let date = today.getDate(); // 날짜 let date_str = year+month+date; [js] Array 마지막 값 추출 Python Javascript arra[-1] array[array.length-1] array.slice(-1)[0] [Angular 2+] @ViewChild & @ViewChilderen @ViewChild 데코레이터 @ViewChild(탐색 대상 클래스 명) 프로퍼티 명: 탐색 대상 클래스 명 이전 1 2 3 4 5 6 7 ··· 23 다음