(food)
| 40 | |
| 41 | */ |
| 42 | function pizzaMaker(food) { |
| 43 | let order = "Id like a pizza with "; |
| 44 | |
| 45 | function oven() { |
| 46 | return order + food; |
| 47 | } |
| 48 | |
| 49 | return oven(); // we are returning the return value of invoking the function |
| 50 | } |
| 51 | // console.log(pizzaMaker('mushrooms')); |
| 52 | // console.log(pizzaMaker('mangos')); |
| 53 |