객체의 구성

const book = {
	  name: 'Java',
	  page: 100,
		"best author": 'James Arthur Gosling',
		info: function() {
				return "책이름 : " + this.name + ", 페이지 : " + this.page;
		}
};

// 프로퍼티 값 얻기
book.name
book.page
book["best author"]

// 메소드 참조
book.info();