Psst: Open the JavaScript Console and try to play around with these functions:
power(2,31) // should return 2147483648
factorial(7) // should return 5040
productOfArray([1,2,3,10]) // should return 60
recursiveRange(10) // should return 55
fib(35) // should return 9227465