함수가 실행될 때 인수로 들어가는 또다른 함수
ex)
const a = () ⇒ { console.log(’A’) } const b = () ⇒ { console.log(’B’) }
a(b) 에서 ← b를 콜백함수라 한다.