diff --git a/subjects/curry-entries/README.md b/subjects/curry-entries/README.md index 986029a9..4afb4721 100644 --- a/subjects/curry-entries/README.md +++ b/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 diff --git a/subjects/keep-trying-or-giveup/README.md b/subjects/keep-trying-or-giveup/README.md index f90875d9..165a37b0 100644 --- a/subjects/keep-trying-or-giveup/README.md +++ b/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)