Skip to content

Instantly share code, notes, and snippets.

@lupomontero
Created June 30, 2018 18:39
Show Gist options
  • Save lupomontero/5135546cec5dbc90a4d499fd64190d6f to your computer and use it in GitHub Desktop.
Save lupomontero/5135546cec5dbc90a4d499fd64190d6f to your computer and use it in GitHub Desktop.
const double = (arr) => {
arr.forEach((item, idx) => {
arr[idx] = item * 2;
});
return arr;
};
module.exports = double;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment