toggle-toggle / javascript-basic

🌱우아한 테크코스 프론트엔드 자바스크립트 기초 스터디 입니다.
9 stars 0 forks source link

[scope & closure] 커링 함수를 클로저의 개념과 연관지어서 설명해주세요 #44

Open devhyun637 opened 3 years ago

shinsehantan commented 3 years ago
function add(a) {
  console.log(`a of add: ${a}`)
  return function (b) {
    console.log(`a: ${a} / b: ${b}`)
    return a + b
  }
}

add(1)(2) // 이 결과는 3이다.
Tanney-102 commented 3 years ago