February 2019
Intermediate to advanced
204 pages
4h 52m
English
To use Map, simply import it from immutable JS and start to use it, as in the following code snippet:
import { Map } from 'immutable';const person = { "resourceType": "Patient", "id": "example", "active": true, "gender": "male", "birthDate": "1974-12-25", "managingOrganization": { "reference": "Organization/1" }};// To create the equivalent in Immutable:const immutablePerson = Map(person);
Read now
Unlock full access