mostly-adequate-guide-fr icon indicating copy to clipboard operation
mostly-adequate-guide-fr copied to clipboard

Mostly adequate guide to FP (in javascript, translated in french)

Results 5 mostly-adequate-guide-fr issues
Sort by recently updated
recently updated
newest added

On [Chapter 3](https://github.com/MostlyAdequate/mostly-adequate-guide-fr/blob/master/ch3.md) french translation, you can find the following issue: ```js var squareNumber = memoize(function(x){ return x*x; }); squareNumber(4); //=> 16 squareNumber(4); // retourne la valeur cachée pour l'entrée...