call, apply의 시뮬레이션 실현

2601 단어
1.call의 시뮬레이션 구현
Function.prototype.myCall = function (context = window, ...args) {
  context = context || window  //  context , window
    
  if (this === Function.prototype) {
    return undefined  //  Function.prorotype.myCall()  undefined       
  }

  fn = Symbol()
  context[fn] = this  //  context Symbol , 
  const result = context[fn](...args)  //   
  delete context[fn]  //   
  return result         
}

Symbol 속성 특성: 유일성, 대상의 속성으로 정적 속성 Symbol이 있습니다.iterator
 
2.apply의 시뮬레이션 구현
Function.prototype.myApply = function (context = window, args) {
  context = context || window
  
  if (this === Function.prototype) {
    retrun undefined
  }
  
  fn = Symbol()
  context[fn] = this

  let result
  if ( Array.isArray(args) ) {
    result = context[fn](...args)
  }  else {
    result = context[fn]()
  }
  delete context[fn]  
  return result            
}

좋은 웹페이지 즐겨찾기