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