Files
odin-javascript-exercises/calculator/README.md
T

8 lines
399 B
Markdown
Raw Normal View History

2021-03-03 15:13:24 +13:00
# Exercise 08 - Calculator
2017-09-20 19:04:46 -04:00
The goal for this exercise is to create a calculator that does the following:
add, subtract, get the sum, multiply, get the power, and find the factorial
2021-03-03 15:13:24 +13:00
In order to do this please fill out each function with your solution. Make sure to return the value so you can test it in Jest! To see the expected value
take a look at the spec file that houses the Jest test cases.