|
|
|
|
|
by lhorie
1615 days ago
|
|
Lots of people take useful parts of the functional paradigm without bringing in the whole shebang. Javascript being at the top of the list of languages in that page is a good hint at how people use it: things like Array.map are often used instead of procedural counterparts because people consider the pipeline-like data flow to be easier to understand than ad-hoc for loops, to give one simple example. Promises and the async/await syntax sugar on top of them are another JS construct that borrow quite a bit from functional literature. |
|