Last active
May 11, 2017 08:56
-
-
Save phwb/a2dfa7ee0a7196812ee82ae375c4cb10 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'); | |
collection.push('captainAmerica'); | |
console.log(collection) | |
// Output: | |
Array [ | |
"ironMan", | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment