Skip to content

Instantly share code, notes, and snippets.

@emrekasg
Last active April 2, 2020 14:48
Show Gist options
  • Save emrekasg/51884d180c4dd43514226c0d6a4bf2a2 to your computer and use it in GitHub Desktop.
Save emrekasg/51884d180c4dd43514226c0d6a4bf2a2 to your computer and use it in GitHub Desktop.
for Medium
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