// 모든 코드가 액션으로 퍼져나갔다.
function figurePayout(affiliate) {
  const owed = affiliate.sales * affiliate.commission
  if (owed > 100) {
    sendPayout(affiliate.bank_code, owed)
  }
}

function affiliatePayout(affiliates) {
  for (let a = 0; a < affiliates.length; a++) {
    figurePayout(affiliates[a])
  }
}

function main(affiliates) {
  affiliatePayout(affiliates)
}

자바스크립트에서 발생 할 수 있는 액션

<aside> 💡 코드가 호출 시점이나 횟수에 의존하는지 생각해 본다.

</aside>

액션

⭐️ 액션 쓰는 법