(Objects 03) 객체 초기화
in JavaScript
SoloLearn JS 번역
Object Initialization
객체 초기화
- Use the
object literal
orinitializer
syntax to create single objects.- 객체를 하나 생성하기 위해
객체 리터럴
또는초기화
구문을 사용한다.
- 객체를 하나 생성하기 위해
var John = {
name: "John",
age: 25
};
var James = {
name: "James",
age: 21
};
Objects consist of properties, which are used to describe an object.
객체는 객체를 설명하는 데 사용되는 속성으로 구성된다.
Values of object properties can either contain primitive data types or other objects.
객체 속성의 값은 원시 데이터 type 또는 다른 객체를 포함할 수 있다.
Using Object Initializers
객체 초기화 사용하기
- Spaces and line breaks are not important.
- 공백과 줄 바꿈은 중요하지 않다.
- An object definition can span multiple lines.
- 객체 정의는 여러 줄에 걸칠 수 있다.
var John = {
name: "John",
age: 25
};
var James = {
name: "James",
age: 21
};
document.write(John.age); // 25
- No matter how the object is created, the syntax for accessing the properties and methods does not change.
- 객체가 어떻게 생성됐는지 상관없이, 속성과 메소드에 액세스하는 구문은 변경되지 않는다.
QUIZ
- Complete the following expression to display the “simba” object’s “category” property on the screen:
- “simba” 객체의 “category” 속성을 화면에 표시해라.
document.write(simba.category);