Skip to content

Instantly share code, notes, and snippets.

@atralice
Last active March 29, 2021 13:53
Show Gist options
  • Save atralice/e28199ad8b63a3f01a1e428a9cf0c070 to your computer and use it in GitHub Desktop.
Save atralice/e28199ad8b63a3f01a1e428a9cf0c070 to your computer and use it in GitHub Desktop.
var array = [1,2,3,4];
function suma(a, b) {
return a + b;
}
for(var i = 0; i < array.length; i++) {
console.log(array[i]* 2);
}
console.log('hola, como va');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment