Home 18장, 함수와 일급 객체
Post
취소

18장, 함수와 일급 객체

🔖 18장, 함수와 일급 객체

📌 배운 내용 및 기억하고 싶은 내용

  • 일급 객체의 조건

    1. 무명의 리터럴로 생성 가능(런타임에 생성가능)
    2. 변수나 자료구조에 저장 가능
    3. 함수의 매개변수에 전달가능
    4. 함수의 반환값으로 사용 가능
  • 자바스크립트에서 함수는 일급 객체

    • 1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      18
      19
      20
      21
      22
      23
      24
      25
      26
      27
      28
      29
      30
      31
      32
      33
      34
      
      // 1. 함수는 무명의 리터럴로 생성할 수 있다.
      // 2. 함수는 변수에 저장할 수 있다.
      // 런타임(할당 단계)에 함수 리터럴이 평가되어 함수 객체가 생성되고 변수에 할당된다.
      const increase = function (num) {
        return ++num;
      };
          
      const decrease = function (num) {
        return --num;
      };
          
      // 2. 함수는 객체에 저장할 수 있다.
      const auxs = { increase, decrease };
          
      // 3. 함수의 매개변수에게 전달할 수 있다.
      // 4. 함수의 반환값으로 사용할 수 있다.
      function makeCounter(aux) {
        let num = 0;
          
        return function () {
          num = aux(num);
          return num;
        };
      }
          
      // 3. 함수는 매개변수에게 함수를 전달할 수 있다.
      const increaser = makeCounter(auxs.increase);
      console.log(increaser()); // 1
      console.log(increaser()); // 2
          
      // 3. 함수는 매개변수에게 함수를 전달할 수 있다.
      const decreaser = makeCounter(auxs.decrease);
      console.log(decreaser()); // -1
      console.log(decreaser()); // -2
      
  • 함수와 일반 객체의 차이

    • 일반 객체: 호출 불가능
    • 함수 객체: 호출 가능, 일반객체에 없는 함수 고유 프로퍼티 소유

함수 객체의 프로퍼티

  • console.dir()

    • 함수 객체의 내부 확인 가능한 메서드
  • Object.getOwnPropertyDescriptors()

    • 모든 프로퍼티의 프로퍼티 어트리뷰트 확인 가능한 메서드

    • 1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      18
      19
      20
      21
      22
      
      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}
      }
      */
          
      // __proto__는 square 함수의 프로퍼티가 아니다.
      console.log(Object.getOwnPropertyDescriptor(square, '__proto__')); // undefined
          
      // __proto__는 Object.prototype 객체의 접근자 프로퍼티다.
      // square 함수는 Object.prototype 객체로부터 __proto__ 접근자 프로퍼티를 상속받는다.
      console.log(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__'));
      // {get: ƒ, set: ƒ, enumerable: false, configurable: true}
      
    • arguments, caller, length, name, prototype 프로퍼티: 일반 객체에는 없는 함수 객체의 데이터 프로퍼티

    • __prototype__: Object.prototype 객체의 프로퍼티를 상속받음(함수 객체 고유의 프로퍼티가 아님)

      • 모든 객체가 사용 가능( 모든 객체가 상속받아 사용 가능 )

arguments 프로퍼티

  • 함수 객체이 arguments 프로퍼티 값은 arguments 객체

    • arguments객체: 함수 호출 시 전달된 인수들의 정보들을 담고 있는 순회 가능한 유사 배열 객체
      • 유사 배열 객체: length 프로퍼티를 가진 객체로 for 문으로 순회할 수 있는 객체를 의미
      • ES6이후, argumnets 객체는 유사배열이면서 이터러블
    • 일부 브라우저에서 지원, ES3부터 표준에서 폐지됨
  • 자바스크립트는 함수의 매개변수와 인수의 개수가 일치하는지 확인하지 않음 => 에러가 발생하지 않음

    • 1
      2
      3
      4
      5
      6
      7
      8
      9
      
      function multiply(x, y) {
        console.log(arguments);
        return x * y;
      }
          
      console.log(multiply());        // NaN
      console.log(multiply(1));       // NaN
      console.log(multiply(1, 2));    // 2
      console.log(multiply(1, 2, 3)); // 2
      
    • arguments 객체의 Symbol(Symbol.iterator) 프로퍼티

      Symbol(Symbol.iterator) 프로퍼티: arguments 객체를 순회 가능한 자료구조인 이터러블로 만들기 위한 프로퍼티

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      
      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);
      
  • 매개변수 개수를 확정할 수 없는 가변 인자 함수를 구현할 때 유용

    • 1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      
      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
      
  • 유사 배열 객체는 배열이 아니므로 배열 메서드를 사용하면 에러 발생

    • 배열 메서드를 사용하려면 Function.prototype.call, Function.prototype.apply를 사용해 간접 호출
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    
    function sum() {
      // arguments 객체를 배열로 변환
      const array = Array.prototype.slice.call(arguments);
      return array.reduce(function (pre, cur) {
        return pre + cur;
      }, 0);
    }
      
    console.log(sum(1, 2));          // 3
    console.log(sum(1, 2, 3, 4, 5)); // 15
    
    • 불편함을 해결하기 위해 ES6에서 Rest 파라미터 도입

      • 1
        2
        3
        4
        5
        6
        7
        
        // ES6 Rest parameter
        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 프로퍼티: 매개변수의 개수를 가르킴

name 프로퍼티

  • name 프로퍼티: 함수 객체에서 name프로퍼티는 함수 이름을 나타냄, ES6부터 정식 표준

    • ES5와 ES6에서 동작을 달리함

      • ES5: 익명 함수 표현식에서 name프로퍼티는 빈 문자열을 값으로 가짐
      • ES6: 익명 함수 표현식에서 함수객체를 가르키는 식별자를 값으로 가짐
    • 1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      
      // 기명 함수 표현식
      var namedFunc = function foo() {};
      console.log(namedFunc.name); // foo
          
      // 익명 함수 표현식
      var anonymousFunc = function() {};
      // ES5: name 프로퍼티는 빈 문자열을 값으로 갖는다.
      // ES6: name 프로퍼티는 함수 객체를 가리키는 변수 이름을 값으로 갖는다.
      console.log(anonymousFunc.name); // anonymousFunc
          
      // 함수 선언문(Function declaration)
      function bar() {}
      console.log(bar.name); // bar
      

__proto__ 접근자 프로퍼티

1
2
3
4
5
6
7
8
9
const obj = { a: 1 };

// 객체 리터럴 방식으로 생성한 객체의 프로토타입 객체는 Object.prototype이다.
console.log(obj.__proto__ === Object.prototype); // true

// 객체 리터럴 방식으로 생성한 객체는 프로토타입 객체인 Object.prototype의 프로퍼티를 상속받는다.
// hasOwnProperty 메서드는 Object.prototype의 메서드다.
console.log(obj.hasOwnProperty('a'));         // true
console.log(obj.hasOwnProperty('__proto__')); // false

prototype 프로퍼티

  • prototype 프로퍼티: 생성자 함수로 호출할 수 있는 객체(constructor만이 소유하는 프로퍼티)
    • 함수가 객체를 생성하는 생성자 함수로 호출될 때 생성자 함수가 생성할 인스턴스와 프로토타입 객체를 가르킴
  • 1
    2
    3
    4
    5
    
    // 함수 객체는 prototype 프로퍼티를 소유한다.
    (function () {}).hasOwnProperty('prototype'); // -> true
      
    // 일반 객체는 prototype 프로퍼티를 소유하지 않는다.
    ({}).hasOwnProperty('prototype'); // -> false
    

❗️ 읽은 소감

자바스크립트에서는 함수를 일급 객체라고 부른다. 일급 객체는 무명의 리터럴로 생성이 가능해야하고, 변수나 자료구조에 저장할 수 있어야 하며, 함수의 매개변수에 전달이 가능해야하고 함수의 반환값으로 사용할 수 있는 객체를 의미한다.

함수란 개념은 다른 객체지향 프로그래밍 언어와 다르게 자바스크립트에서는 클래스가 없고 다양하게 동작하며, 매개변수의 개수와 인수의 개수가 달라도 오류가 발생하지 않고 동작하기 때문에 개념에 대해 중요한 것 같다고 느껴졌다.

❓ 궁금한 내용이나 잘 이해되지 않는 내용

  • 없음
This post is licensed under CC BY 4.0 by the author.