18장 - 일급 객체
일급 객체란?
- 무명의 리터럴로 생성할 수 있다. 즉, 런타임에 생성이 가능하다.
- 변수나 자료구조(객체, 배열)에 저장할 수 있다.
- 함수의 매개변수에 전달할 수 있다.
- 함수의 반환값으로 사용할 수 있다.
이 4개의 조건을 만족하는 객체를 일급 객체라고 부른다.
// 1. 함수는 무명의 리터럴로 생성할 수 있다.
2. 함수는 변수에 저장할 수 있다.
const increase = function (num) {
return ++num;
};
const decrease = function (num) {
return --num;
};
const auxs = { increase, decrease }; // 2. 함수는 객체에 저장할 수 있다.
function makeCounter(aux) {
let num = 0;
return function() {
num = aux(num);
return num;
};
}
// 함수는 매개변수에게 함수를 전달할 수 있다.
const increaser = makeCounter(auxs.increase);
console.log(increaser());
console.log(increaser());
const decreaser = makeCounter(auxs.decrease);
console.log(decreaser());
console.log(decreaser());
함수 객체의 프로퍼티
function square(number) {
return number * number;
}
console.log(Object.getOwnPropertyDescriptors(square));
/* {
length: { value: 1, writable: false, enumerable: false, configurable: true },
name: {
value: 'square',
writable: false,
enumerable: false,
configurable: true
},
arguments: {
value: null,
writable: false,
enumerable: false,
configurable: false
},
caller: {
value: null,
writable: false,
enumerable: false,
configurable: false
},
prototype: { value: {}, writable: true, enumerable: false, configurable: false }
} */
console.log(Object.getOwnPropertyDescriptor(Object.prototype, "__proto__"));
/*
{
get: [Function: get __proto__],
set: [Function: set __proto__],
enumerable: false,
configurable: true
}*/
argument, caller, length, name, prototype 프로퍼티는 모두 함수 객체의 데이터 프로퍼티임을 알 수 있다.
그러나, __proto__
는 접근자 프로퍼티로, Object.prototype 객체의 프로퍼티를 상속받은 것이다. 따라서, __proto__
접근자 프로퍼티는 모든 객체가 사용할 수 있다
1. arguments 프로퍼티
arguments 프로퍼티 객체는 arguments 객체로, 함수 호출 시 전달된 인수들의 정보를 담고 있는 순회 가능한 유사 배열 객체로, 함수 내부에서 지역 변수처럼 사용할 수 있다.
function multiply(x,y) {
console.log(arguments);
return x * y;
}
console.log(multiply(1,2));
/* [Arguments] { '0': 1, '1': 2 }
2
/*
arguments 객체는 매개변수의 개수를 확정할 수 없는 '가변 인자 함수'를 구현할 때 유용하다.
유사 배열 객체?
-> 배열 형태로 인자 정보를 담고는 있으나, 실제 배열이 아닌 것이다.
length 프로퍼티를 가진 객체로, for 문으로 순회가 가능한 객체를 말한다.
2. caller 프로퍼티
크게 중요하지 않은 '비표준 프로퍼티', 참고로만 알아둬도 된다.
함수 객체의 caller 프로퍼티는 함수 자신을 호출한 함수를 가리키는 정도로만 알아두면 된다.
function foo(func) {
return func();
}
function bar() {
return "caller : " + bar.caller;
}
console.log(foo(bar));
/* caller : function foo(func) {
return func();
}
*/
3. length 프로퍼티
length 프로퍼티는 함수를 정의할 때 선언한 매개변수의 개수를 가리킨다.
function foo() {}
console.log(foo.length); // 0
function bar(x) {
return x;
}
console.log(bar.length); // 1
function baz(x, y) {
return x * y;
}
console.log(baz.length); // 2
arguments의 length 프로퍼티는 '인자'의 개수, 함수의 length 프로퍼티는 '매개변수'의 개수를 가리킨다.
4. name 프로퍼티
함수 객체의 name 프로퍼티는 함수의 이름을 나타낸다.
ES6과 ES5에서 동작을 달리하는데,
ES5의 네임 프로퍼티는 빈 문자열을 값으로 가지나,
ES6에서는 함수 객체를 가리키는 식별자를 값으로 가진다.
5. __proto__
접근자 프로퍼티
__proto__
프로퍼티는 Prototype 내부 슬롯이 가리키는 프로토타입 객체에 접근하기 위해서 사용하는 접근자 프로퍼티다.
내부 슬롯에는 직접 접근할 수 없으나, 간접적인 접근 방법을 제공하는 경우에만 접근이 가능하다.
6. prototype 프로퍼티
prototype 프로퍼티는 생성자 함수로 호출할 수 있는 함수 객체, 즉 'constructor' 만이 소유하는 프로퍼티이다.
non-constructor는 prototype 프로퍼티가 존재하지 않는다.
prototype 프로퍼티는 함수가 객체를 생성하는 생성자 함수로 호출될 때 생성자 함수가 생성할 인스턴스의 프로토타입 객체를 가리킨다.
Author And Source
이 문제에 관하여(18장 - 일급 객체), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@monolog3254/18장-일급-객체저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)