Created
May 11, 2017 08:55
-
-
Save phwb/3e3065df8e03f2ef581d36563d902335 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Immutable.js non-mutating List.push | |
const collection = Immutable.List.of('ironMan'); | |
const newCollection = collection.push('captainAmerica'); | |
console.log(newCollection) | |
// Output: | |
Array [ | |
"ironMan", | |
"captainAmerica", | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment