[자바스크립트를 깨우치다] Chapter03_Objcet()
·
카테고리 없음
Chapter03Chapter 03. Object() Object() 객체 인스턴스의 속성과 메소드 - 인스턴스 속성 + constructor - 인스턴스 메소드 + hasOwnProperty(); + isPrototypeOf(); + propertyIsEnumerable() + toLocaleString() + toString() + valueOf() 위의 속성과 메소드는 Objcet.prototype에 정의되어 있으므로, 모든 자바스크립트 객체에서 볼 수 있다. 객체 리터럴을 이용한 Object() 생성 객체를 만들때, “객체 리터럴” 표기법을 이용하면 한번에 객체를 만들 수 있다. var cody = { living: true, age: 23, gender: "male", getGender: fun..