mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
786 B
32 lines
786 B
4 years ago
|
## Using Reduce
|
||
|
|
||
4 years ago
|
### Instructions
|
||
4 years ago
|
|
||
|
Create three functions :
|
||
|
- `adder` that receives an array and adds its elements.
|
||
|
|
||
|
- `sumOrMul` that receives an array and adds or multiplies its elements
|
||
|
depending on whether the element is an odd or an even number.
|
||
|
|
||
|
- `funcExec` that receives an array of functions and executes them.
|
||
|
|
||
|
All functions may or may not receive an extra argument that should be the
|
||
|
initial value for the functions execution.
|
||
|
|
||
|
Example:
|
||
|
```js
|
||
|
sumOrMul([1, 2, 3, 4], 5)
|
||
|
// -> (((5 + 1) * 2) + 3) * 4
|
||
|
// -> 60
|
||
|
````
|
||
|
|
||
4 years ago
|
#### Special instruction
|
||
|
|
||
|
The goal of this exercise is to learn to use `reduce`, as such all your
|
||
|
solution **MUST** use `reduce`
|
||
|
|
||
4 years ago
|
|
||
|
### Notions
|
||
|
|
||
4 years ago
|
- [devdocs.io/javascript/global_objects/array/reduce](https://devdocs.io/javascript/global_objects/array/reduce)
|