Files
odin-javascript-exercises/calculator/calculator.js
T

49 lines
786 B
JavaScript
Raw Normal View History

2017-12-15 12:56:14 -06:00
function add(a, b) {
return a + b;
2017-09-20 19:04:46 -04:00
}
2017-12-15 12:56:14 -06:00
function subtract(a, b) {
return a - b;
2017-09-20 19:04:46 -04:00
}
2017-12-15 12:56:14 -06:00
function sum(array) {
2019-05-16 09:49:12 +07:00
return array.reduce((total, current) => total + current, 0);
2017-09-20 19:04:46 -04:00
}
2018-09-28 13:35:40 +08:00
function multiply(array) {
2018-09-27 14:18:29 +08:00
return array.length
2018-09-28 13:38:36 +08:00
? array.reduce((accumulator, nextItem) => accumulator * nextItem)
2018-09-28 13:36:03 +08:00
: 0;
2017-09-20 19:04:46 -04:00
}
2017-12-15 12:56:14 -06:00
function power(a, b) {
return Math.pow(a, b);
2017-09-20 19:04:46 -04:00
}
2017-12-15 12:56:14 -06:00
function factorial(n) {
2018-01-03 12:21:25 -06:00
if (n == 0) return 1;
let product = 1;
for (let i = n; i > 0; i--) {
product *= i;
}
return product;
}
// This is another implementation of Factorial that uses recursion
// THANKS to @ThirtyThreeB!
function recursiveFactorial(n) {
2018-01-03 12:10:49 -05:00
if (n===0){
return 1;
2018-01-03 12:21:25 -06:00
}
return n * recursiveFactorial (n-1);
2017-09-20 19:04:46 -04:00
}
module.exports = {
2017-12-15 12:56:14 -06:00
add,
subtract,
sum,
multiply,
power,
factorial
};