Last active
April 2, 2020 14:48
-
-
Save emrekasg/51884d180c4dd43514226c0d6a4bf2a2 to your computer and use it in GitHub Desktop.
for Medium
This file contains hidden or 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
var array = [1,2,3,4,4,5,6,21,32,1] | |
var values = array.map(v => v + 1); | |
// Value of "values" variable : [2, 3, 4, 5, 5, 6, 7, 22, 33, 2] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment