Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 에디터
- github
- createTextRange
- Stream
- TextRange
- AWS
- Java
- VanillaJS
- java8
- Mustache
- Visual Studio Code
- Python
- oauth
- OAuth2
- Programming
- JavaScript
- 404
- Federated Identity
- SpringBoot
- Django
Archives
- Today
- Total
Harry's Blog
[Javascript] Array, Object 본문
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.favoriteMovies); // [ 'LaBoom', 'IronMan', 'Oldboy' ]
console.log(person.favoriteFood[0].cost); // 5000
'Web > Javascript' 카테고리의 다른 글
Visual Studio Code와 Github 연동 (Windows 10 기준) #2 : 깃허브 저장소로 작업 파일 push (0) | 2020.05.13 |
---|---|
Visual Studio Code와 Github 연동 (Windows 10 기준) #1 (0) | 2020.05.13 |
[Javascript] var, let, const (0) | 2020.05.01 |
CSS 스타일 동적 변경 (0) | 2018.08.14 |
querySelector / querySelectorAll (0) | 2018.08.14 |