Created
August 31, 2016 23:44
-
-
Save mjzone/589d82bf66d8ca6f6d2500edbd5fbc66 to your computer and use it in GitHub Desktop.
Double the array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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