Skip to content

Instantly share code, notes, and snippets.

@gaand
Created October 5, 2015 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gaand/de0b7b57a7378b44e4bb to your computer and use it in GitHub Desktop.
Save gaand/de0b7b57a7378b44e4bb to your computer and use it in GitHub Desktop.
var arrayTimes2 = function arrayTimes2(array) {
  for (var i = 0; i < array.length; i++) {
    array[i] *= 2;
  }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment