September 2017
Intermediate to advanced
216 pages
6h 8m
English
We can convert lists to sequences using toSeq(), as shown here:
const myList = List.of(1, 2, 3);const myIndexedSeq = myList.toSeq();console.log('myIndexedSeq', myIndexedSeq.toJS());// -> myIndexedSeq [ 1, 2, 3 ]
Read now
Unlock full access