Skip to content

Instantly share code, notes, and snippets.

@mjzone
Created August 31, 2016 23:44
Show Gist options
  • Save mjzone/589d82bf66d8ca6f6d2500edbd5fbc66 to your computer and use it in GitHub Desktop.
Save mjzone/589d82bf66d8ca6f6d2500edbd5fbc66 to your computer and use it in GitHub Desktop.
Double the array
var array1 = [1,2,3];
var array2 = [];
for(var i=0; i< array1.length; i++){
array2.push(array1[i]*2);
}
console.log(array2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment