Skip to content

Instantly share code, notes, and snippets.

@srkama
Created February 12, 2016 03:47
Show Gist options
  • Select an option

  • Save srkama/e3b6ace7b865dae1fb1a to your computer and use it in GitHub Desktop.

Select an option

Save srkama/e3b6ace7b865dae1fb1a to your computer and use it in GitHub Desktop.
javascript arrow function
// write the correct arrow function here
var my_function = function(some_array) {
return some_array.map(v => (v % 2 == 0 ? v + 1 : v - 1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment