Browse Source

Issues fixing

content-update
OGordoo 4 years ago
parent
commit
a003411e1e
  1. 5
      subjects/curry-entries/README.md
  2. 2
      subjects/keep-trying-or-giveup/README.md

5
subjects/curry-entries/README.md

@ -58,10 +58,10 @@ filterCurry(([k, v]) => typeof v === 'string' || k === 'arr')({
{ str: 'string', arr: [1, 2] }
```
Using each curry function create the following functions with one parameter `personnel`:
Using each curry function create the following functions with a parameter `personnel`:
- `reduceScore` that will return the total value of the scores
of the persons who use the force
of the persons who use the force (this function can have one additional parameter)
- `filterForce` that will return the force users with `shootingScores`
equal or higher than 80
- `mapAverage` that will return a new object with the propriety `averageScore`
@ -74,6 +74,7 @@ Using each curry function create the following functions with one parameter `per
- [devdocs.io/javascript/global_objects/array/reduce](https://devdocs.io/javascript/global_objects/array/reduce)
- [devdocs.io/javascript/global_objects/object/entries](https://devdocs.io/javascript/global_objects/object/entries)
- [devdocs.io/javascript/global_objects/object/fromentries](https://devdocs.io/javascript/global_objects/object/fromentries)
- [stackoverflow.com/questions/36314/what-is-currying](https://stackoverflow.com/questions/36314/what-is-currying)
### Code provided

2
subjects/keep-trying-or-giveup/README.md

@ -24,6 +24,6 @@ resolve before `delay` time has reached.
### Notions
- [nan-academy.github.io/js-training/examples/promise.js](https://nan-academy.github.io/js-training/examples/promise.js)
- [nan-academy.github.io/js-training/examples/promise.js](https://nan-academy.github.io/js-training/examples/promises.js)
- [devdocs.io/dom/windoworworkerglobalscope/settimeout](https://devdocs.io/dom/windoworworkerglobalscope/settimeout)
- [devdocs.io/javascript/global_objects/promise/race](https://devdocs.io/javascript/global_objects/promise/race)

Loading…
Cancel
Save