Skip to content

gamalielsaracho/using-immutablejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Immutable data.

Any operation that would mutate a data structure in Immutable.js does not modify the original value.

But rather returns a new value.

Iterable

An Iterable is a set of key/value entries that can be iterated (e.g. using .map(), .filter(), .reduce(), …)

All collections in Immutable.js, like Map and List, use Iterable as a base class.

Maps

Think of Map as an object.

.fromJS() This returns a given JS object as an Immutable.js representation,

Converting objects into Maps, and arrays into Lists.

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published