18 일급 객체

이재철·2021년 9월 27일
0

javaScript

목록 보기
10/19
post-thumbnail

일급 객체

  • 무명의 리터럴로 생성 -> 런타임에 생성 가능
  • 변수나 자료구조(객체, 배열등) 저장가능
  • 함수의 매개변수에 전달가능
  • 함수의 반환값으로 사용

함수 객체의 프로퍼티

function square(number) {
 return number * number;
}
console.log(Object.getOwnPropertyDescriptors(square));

/*
arguments: {value: null, writable: false, enumerable: false, configurable: false}
caller: {value: null, writable: false, enumerable: false, configurable: false}
length: {value: 1, writable: false, enumerable: false, configurable: true}
name: {value: 'square', writable: false, enumerable: false, configurable: true}
prototype: {value: {…}, writable: true, enumerable: false, configurable: false}

*/

// __proto__는 square 함수의 프로퍼티가 아니다
console.log(Object.getOwnPropertyDescriptors(square, '__proto__')); // undefined

// square 함수는 Object.prototype 객체로 부터 __proto__ 접근자 프로퍼티 상속
console.log(Object.getOwnPropertyDescriptors(Object.prototype, '__proto__')); // 

arguments 프로퍼티

  • arguments 객체는 매개변수 개수를 확정할 수 없는 가변 인자 함수를 구현할 때 유용
  • 매개변수와 인수의 개수가 일치하는지 확인하지 않음(에러 발생x)
  • 인자 정보를 담고 있지만 실제 배열이 아닌 유사 배열 객체(array-like object)
    • 유사 배열 객체는 배열이 아니므로 배열 메서드를 사용할 경우 에러 발생
    • Function.prototype.call, Function.prototype.apply를 사용하여 간접 호출

💡 arguments 객체의 Symbol(Symbol.iterator) 프로퍼티

  • arguments 객체의 Symbol 프로퍼티는 arguments 객체를 순회 가능한 자료 구조인 이터러블로 만들기 위한 프로퍼티
function multiply(x, y) {
 const iterator = arguments[Symbol.iterator]();

 // 이터레이터의 next 메서드를 호출하여 이터러블 객체 arguments를 순회
 console.log(iterator.next()); // {value: 1, done: false}
 console.log(iterator.next()); // {value: 2, done: false}
 console.log(iterator.next()); // {value: 3, done: false}
 console.log(iterator.next()); // {value: undefined, done: true}
 return x * y;
}

multiply(1, 2, 3);
function sum() {
 let res = 0;
 // arguments 객체는 length 프로퍼티가 있는 유사 배열 객체 for 문으로 순회 가능
 for ( let i = 0; i < arguments.length; i++) {
  res += arguments[i];
 }
 return res;
}

console.log(sum()); // 0
console.log(sum(1, 2)); // 3
console.log(sum(1, 2, 3)); // 6

💡 유사 배열 객체와 이터러블

  • 이터러블 개념이 없던 ES5에서 arguments 객체는 유사 배열 객체로 구분,
    하지만 이터러블이 도입된 ES6부터 arguements 객체는 유사 배열 객체면서 동시에 이터러블
function sum() {
   //arguments 객체를 배열로 변환
  const array = Array.prototype.slice.call(arguments);
  return array.reduce((pre, cur) => pre + cur, 0);
}

console.log(sum(1, 2)); //3
console.log(sum(1, 2, 3, 4, 5)); // 15

// ES6 Rest 파라미터 

function sum(...args) {
 return args.reduce((pre, cur) => pre + cur, 0);
}

console.log(sum(1, 2)); //3
console.log(sum(1, 2, 3, 4, 5)); // 15

length 프로퍼티

  • 함수 객체의 length 프로퍼티는 함수를 정의할 때 선언한 매개변수의 개수
  • arguments 객체의 length 프로퍼티와 함수 객체의 length 프로퍼티 값이 다를 수 있음
    • arguments 객체 : length 프로퍼티 -> 인자(argument)의 개수
    • 함수 객체 : length 프로퍼티 -> 매개변수(parameter)의 개수
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

name 프로퍼티

  • 함수 이름을 나타냄
  • ES5와 ES6에서 동작을 달리함
// 기명 함수 표현식
var nameFunc = function foo() {};
console.log(namedFunc.name); // foo

// 익명 함수 표현식
var anonymousFunc = function() {};
// ES5 : name 프로퍼티는 빈 문자열 
// ES6 : name 프로퍼티는 함수 객체를 가리키는 변수 이름을 값으로 갖는다
console.log(anonymousFunc.name); // anonymousFnc

// 함수 선언문	
function bar() {}
console.log(bar.name); // bar

proto 접근자 프로퍼티

  • [[Prototype]] 내부 슬롯이 가리키는 프로토타입 객체에 접근하기 위해 사용하는 접근자 프로퍼티
  • [[Prototype]] 내부 슬롯에 직접 접근할 수 없으며 proto 접근자 프로퍼티를 통해 간접적으로 프로토타입 객체에 접근

prototype 프로퍼티

  • 생성자 함수로 호출할 수 있는 함수 객체, constructor만 소유하는 프로퍼티
    • 함수가 객체를 생성하는 생성자 함수로 호출될 때 생성자 함수가 생성할 인스턴스의 프로토타입 객체를 가르킴
  • non-constructor에는 prototype 프로퍼티가 없음
// 함수 객체는 prototype 프로퍼티를 소유
(function () {}).hasOwnProperty('prototype'); // true
// 일반 객체는 prototype 프로퍼티를 소유하지 않음
({}).hasOwnProperty('prototype'); // false

📖 참고도서 : 모던 자바스크립트 Deep Dive 자바스크립트의 기본 개념과 동작 원리 / 이웅모 저 | 위키북스

profile
혼신의 힘을 다하다 🤷‍♂️

0개의 댓글