- Mastering Immutable.js
- Adam Boduch
- 31字
- 2021-07-08 10:30:09
Sequences of values
You can use the of() method to create value sequences, as follows:
const mySeq = Seq.of(1, 2, 3);
console.log('mySeq', mySeq.toJS());
// -> mySeq [ 1, 2, 3 ]
推薦閱讀
- 數(shù)據(jù)科學(xué)實(shí)戰(zhàn)手冊(cè)(R+Python)
- Mobile Application Development:JavaScript Frameworks
- Drupal 8 Blueprints
- Hands-On Data Structures and Algorithms with JavaScript
- 算法訓(xùn)練營(yíng):提高篇(全彩版)
- PHP 7從零基礎(chǔ)到項(xiàng)目實(shí)戰(zhàn)
- SQL Server 2008 R2數(shù)據(jù)庫(kù)技術(shù)及應(yīng)用(第3版)
- Visual Basic語(yǔ)言程序設(shè)計(jì)基礎(chǔ)(第3版)
- Socket.IO Cookbook
- Internet of Things with Arduino Cookbook
- IBM DB2 9.7 Advanced Application Developer Cookbook
- Cocos2D Game Development Essentials
- Flask Web開發(fā)實(shí)戰(zhàn):入門、進(jìn)階與原理解析
- Unreal Engine 4 Game Development Essentials
- Mastering Assembly Programming