1장에서 리팩터링 예시로 든 공연료 구하는 코드를 리팩토링 해보기로 했다. ➡️ 공연료 청구서 출력하는 코드 리팩토링 하기 const plays = { "hamlet": {"name": "Hamlet", "type": "tragedy"}, "as-like": {"name": "As you like it", "type": "comedy"}, "othello": {"name": "Othello", "type": "tragedy"} }; const invoices = { "customer": "Amy", "performances": [ { "playID": "hamlet", "audience": 55 }, { "playID": "as-like", "audience": 35 }, { "playID": "othe..