자바스크립트는 객체(object) 기반의 스크립트 언어이며 자바스크립트의 객체는 키(key)과 값(value)으로 구성된 프로퍼티(Property)들의 집합이다.
프로퍼티는 프로퍼티 키(이름)와 프로퍼티 값으로 구성된다.
프로퍼티는 프로퍼티 키로 유일하게 식별할 수 있다.
프로퍼티 값이 함수일 경우, 일반 함수와 구분하기 위해 메소드라 부른다.
즉, 메소드는 객체에 제한되어 있는 함수를 의미한다.
자바와 같은 클래스 기반 객체 지향 언어는 클래스를 사전에 정의하고 필요한 시점에 new 연산자를 사용하여 인스턴스를 생성하는 방식으로 객체를 생성한다.
중괄호({})를 사용하여 객체를 생성하는데 {} 내에 1개 이상의 프로퍼티를 기술하면 해당 프로퍼티가 추가된 객체를 생성할 수 있다.
{} 내에 아무것도 기술하지 않으면 빈 객체가 생성된다.
// 빈객체
const emptyObject = {};
console.log(typeof emptyObject); // object
// person이라는 객체
const person = {
name: 'Lee',
gender: 'male',
sayHello: function () {
console.log('Hi! My name is ' + this.name);
}
};
console.log(typeof person); // object
console.log(person); // {name: "Lee", gender: "male", sayHello: ƒ}
person.sayHello(); // Hi! My name is Lee
생성자(constructor) 함수란 new 키워드와 함께 객체를 생성하고 초기화하는 함수를 말한다.
new 연산자와 Object 생성자 함수를 호출하여 빈 객체를 생성할 수 있다.
빈 객체 생성 이후 프로퍼티 또는 메소드를 추가하여 객체를 완성하는 방법이다.
붕어빵 기계를 예로 들어보면 붕어빵을 만드는 틀은 클래스이고 붕어빵은 객체이다.
그리고 이 붕어빵이 만들어지는 과정이 인스턴스화이며 틀을 이용해 만들어진 각 각의 붕어빵들이 인스턴스이다.
붕어빵 기계라는 클래스에서 '굽다' 메소드를 실행시켜 붕어빵을 굽는다.
그리고 만들어진 붕어빵들은 전부 객체들이다.
하지만 같은 기계에서 만들어졌어도 서로 다른 밀가루 량과 팥을 가지고 있다.
실제로 만들어진 붕어빵인 이것이 인스턴스이며 이 붕어빵을 굽는 행위가 인스턴스화이다.
// 빈 객체의 생성
const person = new Object();
// 프로퍼티 추가
person.name = 'Lee';
person.gender = 'male';
person.sayHello = function () {
console.log('Hi! My name is ' + this.name);
};
console.log(typeof person); // object
console.log(person); // {name: "Lee", gender: "male", sayHello: ƒ}
person.sayHello(); // Hi! My name is Lee
생성자 함수를 사용하면 마치 객체를 생성하기 위한 템플릿(클래스)처럼 사용하여 프로퍼티가 동일한 객체 여러 개를 간편하게 생성할 수 있다.
// 생성자 함수
function Person(name, gender) {
this.name = name;
this.gender = gender;
this.sayHello = function(){
console.log('Hi! My name is ' + this.name);
};
}
// 인스턴스의 생성
const person1 = new Person('Lee', 'male');
const person2 = new Person('Kim', 'female');
console.log('person1: ', typeof person1);
console.log('person2: ', typeof person2);
console.log('person1: ', person1);
console.log('person2: ', person2);
person1.sayHello();
person2.sayHello();
프로퍼티 키는 일반적으로 문자열(빈 문자열 포함)을 지정한다.
const person = {
'first-name': 'Jennie',
'last-name': 'Kim',
gender: 'female',
};
console.log(person);
프로퍼티 키 first-name에는 반드시 따옴표를 사용해야 하지만 first_name에는 생략 가능하다. first-name은 자바스크립트에서 사용 가능한 유효한 이름이 아니라 ‘-‘ 연산자가 있는 표현식이기 때문이다.
오류발생
var person = {
first-name: 'Jennie', // SyntaxError: Unexpected token -
};
객체의 프로퍼티 값에 접근하는 방법은 마침표(.) 표기법과 대괄호([ ]) 표기법이 있다.
const person = {
'first-name': 'Jennie',
'last-name': 'Kim',
gender: 'female',
1: 10
};
console.log(person);
console.log(person.first-name); // NaN: undefined-undefined
console.log(person[first-name]); // ReferenceError: first is not defined
console.log(person['first-name']); // 'Jennie'
console.log(person.gender); // 'female'
console.log(person[gender]); // ReferenceError: gender is not defined
console.log(person['gender']); // 'female'
console.log(person['1']); // 10
console.log(person[1]); // 10 : person[1] -> person['1']
console.log(person.1); // SyntaxError
console.log(person.age); // undefined