일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Java
- Federated Identity
- Visual Studio Code
- JavaScript
- OAuth2
- github
- 404
- Python
- Stream
- Django
- Programming
- oauth
- 에디터
- TextRange
- Mustache
- AWS
- java8
- VanillaJS
- SpringBoot
- createTextRange
- Today
- Total
목록Web/Javascript (6)
Harry's Blog
1. push할 파일들 Staging 2. 깃허브에 성공적으로 commit되었는지 확인
1. Git Bash 설치 https://git-scm.com/downloads 2. Git Bash 설치 후 실행 3. Visual Studio Code 실행 > 로컬 PC에서 Github 저장소를 저장할 폴더 선택 4. 상단 메뉴의 Terminal → New Terminal 선택 5. Github에서 Repository 가져오는 명령어 실행 > git config --global user.name 깃허브사용자명 > git clone 깃허브저장소URL 6. 연동 확인을 위해 Activity Bar의 Source Control을 클릭해서 확인해보자.
1. Array const colors = ["red", "blue", "green", "yellow"]; console.log(colors); → [ 'red', 'blue', 'green', 'yellow' ] 2. Object const person = { name: "Harry", age: 33, gender: "Male", country: "Korea", favoriteMovies: ["LaBoom", "IronMan", "Oldboy"], favoriteFood: [ { name: "Cheese burger", cost: 5000 }, { name: "Ramen", cost: 8000 } ] } console.log(person.age); // 33 console.log(person.favor..
(1) var : 할당된 값 재할당 가능, 동일한 변수 이름 사용 가능 (2) let : 할당된 값 재할당 가능, 동일한 변수 이름 사용 불가능 (3) const : 할당된 값 재할당 불가능
1. html 페이지 2. javascipt 실행document.getElementById("sample").style.height="300px"; 3. 2번 실행 뒤 div#sample에 style 추가됨