Skip to content

Instantly share code, notes, and snippets.

@kaw2k
Created January 23, 2016 01:37
Show Gist options
  • Save kaw2k/095301ee2962a8824e50 to your computer and use it in GitHub Desktop.
Save kaw2k/095301ee2962a8824e50 to your computer and use it in GitHub Desktop.
function addOne(x) {
return x + 1;
}
var numbers = [1, 2, 3];
var result = [];
for (var i = 0; i < numbers.length; i++) {
result.push(addOne(numbers[i]));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment