Skip to content

Instantly share code, notes, and snippets.

@cesarkohl
Created January 13, 2020 14:20
Show Gist options
  • Select an option

  • Save cesarkohl/0a72381c229de677e2c6f1f50cc21363 to your computer and use it in GitHub Desktop.

Select an option

Save cesarkohl/0a72381c229de677e2c6f1f50cc21363 to your computer and use it in GitHub Desktop.
var numbers = [1,2,3];
double var = numbers.map (function (number) {
return number * 2;
});
console.log (numbers); // [1,2,3]
console.log (double); // [2,4,6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment