- Mastering Immutable.js
- Adam Boduch
- 70字
- 2021-07-08 10:30:06
Maps
A map is like a JavaScript object. It's a keyed collection, meaning that the same types of keys that you would use with JavaScript objects also work with maps. Immutable.js maps are also like native JavaScript Map instances in that they can use anything as a key—not just strings:
import { Map } from 'immutable';
const myMap = Map();
console.log('Map', myMap instanceof Map);
// -> Map true
推薦閱讀
- 一步一步學Spring Boot 2:微服務項目實戰(zhàn)
- JMeter 性能測試實戰(zhàn)(第2版)
- DevOps入門與實踐
- Java 9 Programming Blueprints
- Learning Apache Mahout Classification
- Bootstrap for Rails
- scikit-learn Cookbook(Second Edition)
- Machine Learning for OpenCV
- INSTANT LESS CSS Preprocessor How-to
- Vue.js 3.x高效前端開發(fā)(視頻教學版)
- 美麗洞察力:從化妝品行業(yè)看顧客需求洞察
- Python深度學習與項目實戰(zhàn)
- 深度學習的數學:使用Python語言
- Storm Real-Time Processing Cookbook
- Cocos2D權威指南