February 2019
Intermediate to advanced
204 pages
4h 52m
English
A Set is a collection of well-defined objects. We can define set by using the Set function from Immutable JS. Consider the following example:
import { Set } from 'immutable';const type = ['Work', 'Mobile', 'Home'];// To create the equivalent in Immutable:const immutablePerson = Immutable.Set(type);
Read now
Unlock full access