- Mastering Immutable.js
- Adam Boduch
- 32字
- 2021-07-08 10:30:08
Lists of values
You can use the of() method to create lists of values as follows:
const myList = List.of(1, 2, 3);
console.log('myList', myList.toJS());
// -> myList [ 1, 2, 3 ]
推薦閱讀
- Cocos2D-X權威指南(第2版)
- JavaScript修煉之道
- Visual Studio 2012 Cookbook
- Python for Secret Agents:Volume II
- 程序員數學:用Python學透線性代數和微積分
- Hands-On C++ Game Animation Programming
- Learning Apache Mahout Classification
- Python:Master the Art of Design Patterns
- Python數據結構與算法(視頻教學版)
- C和C++游戲趣味編程
- Mastering React
- Android移動開發(fā)案例教程:基于Android Studio開發(fā)環(huán)境
- Java EE架構設計與開發(fā)實踐
- Laravel Design Patterns and Best Practices
- 深入理解Java虛擬機:JVM高級特性與最佳實踐