Skip to content

Instantly share code, notes, and snippets.

@DavidMellul
Created March 10, 2018 12:21
Show Gist options
  • Save DavidMellul/a6225fe7ed61637e52e96b6871355c9a to your computer and use it in GitHub Desktop.
Save DavidMellul/a6225fe7ed61637e52e96b6871355c9a to your computer and use it in GitHub Desktop.
let x = [1,2,3,4,5];
let y = [];
for(let i = 0; i < x.length; i ++)
y[i] = x[i]*2;
console.log(y);
// => [2,4,6,8,10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment