- Mastering Immutable.js
- Adam Boduch
- 92字
- 2021-07-08 10:30:05
Summary
This chapter introduced you to the conceptual foundation of Immutable.js. Immutable data is how we prevent unwanted side-effects. With Immutable.js collections, everything results in new data. This includes changing the collection somehow—these are called persistent changes. It also includes shaping the data in order to do something with it—these are called sequence transformations.
The typical Immutable.js pattern involves chaining collection method calls together—the persistent changes and sequence transformations—ending with a side-effect.
In the next chapter, we'll write some code that creates Immutable.js collections.
推薦閱讀
- INSTANT OpenCV Starter
- Eclipse Plug-in Development:Beginner's Guide(Second Edition)
- C#程序設計
- R大數據分析實用指南
- Python Data Analysis Cookbook
- Machine Learning in Java
- PHP編程基礎與實踐教程
- 自學Python:編程基礎、科學計算及數據分析(第2版)
- jQuery for Designers Beginner's Guide Second Edition
- Sails.js Essentials
- Python Projects for Kids
- Python面試通關寶典
- Yii2 By Example
- Visual C++程序開發范例寶典
- Learning Java Lambdas