Practice What You Learned
Fibonacci
Build an Express app:
- Add
Fibonnaci
as a comment in your application. - Create a route 'fibonacci'
- This route will take one param, the number we will operate on.
- If the number param is not a fibonacci number, print out "I can tell this is not a fibonacci number."
- If the number is a Fibonacci number print out "Very good. It is Fibonacci."