- Mastering JavaScript Functional Programming
- Federico Kereki
- 189字
- 2021-07-02 22:41:06
What we get
So, now, does FP get you these five characteristics?
- In FP, the goal is writing separate independent functions, which are joined together to produce the final results.
- Programs written in functional style usually tend to be cleaner, shorter, and easier to understand.
- Functions can be tested on its own, and FP code has advantages for that.
- You can reuse functions in other programs, because they stand on their own, not depending on the rest of the system. Most functional programs share common functions, several of which we'll be considering in this book.
- Functional code is free from side effects, which means you can understand the objective of a function by studying it, without having to consider the rest of the program.
Finally, once you get used to FP ways, code becomes more understandable and easier to extend. So, it seems that all five characteristics can be ensured with FP!
For a well balanced look at reasons for FP, I'd suggest reading Why Functional Programming Matters, by John Hughes; it's available online at www.cs.kent.ac.uk/people/staff/dat/miranda/whyfp90.pdf. It's not geared towards JS, but the arguments are easily understandable, anyway.
推薦閱讀
- Delphi程序設計基礎:教程、實驗、習題
- 薛定宇教授大講堂(卷Ⅳ):MATLAB最優化計算
- Interactive Applications Using Matplotlib
- Flux Architecture
- Python機器學習經典實例
- Mastering RStudio:Develop,Communicate,and Collaborate with R
- TypeScript項目開發實戰
- Oracle從入門到精通(第5版)
- Getting Started with Laravel 4
- Python之光:Python編程入門與實戰
- PLC應用技術(三菱FX2N系列)
- 軟件體系結構
- Sitecore Cookbook for Developers
- 零基礎PHP從入門到精通
- R語言數據分析從入門到實戰