Map

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);
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset