Build a simple calculator to compute basic math operations.
- Numbers
- Several functions to run different kind of operations
- Calculated numbers
- Prepare all basic math operations you already learnt
- Wrap those operations into different kind functions
function add(...) { ... }
function substract(...) { ... }
function multiply(...) { ... }
function divide(...) { ... }
function modulo(...) { ... }
- Experiment to call some chain of different functions in other functions
add(substract(...), divide(...))