Created
March 10, 2018 12:21
-
-
Save DavidMellul/a6225fe7ed61637e52e96b6871355c9a to your computer and use it in GitHub Desktop.
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
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