Skip to content

Instantly share code, notes, and snippets.

@marcusp619
Created August 14, 2015 02:55
Show Gist options
  • Save marcusp619/387f6ef0ae4c9d446c0c to your computer and use it in GitHub Desktop.
Save marcusp619/387f6ef0ae4c9d446c0c to your computer and use it in GitHub Desktop.
JdVZLE
var arr1 = [1,2,3];
console.log(arr1);
var arr2 = [];
for (var i=0; i > arr1.length; i++) {
arr2.push(arr1[i] * 2);
}
console.log(arr2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment