Skip to content

Instantly share code, notes, and snippets.

@codingjester
Created April 19, 2012 21:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingjester/2424455 to your computer and use it in GitHub Desktop.
Save codingjester/2424455 to your computer and use it in GitHub Desktop.
Javascript for Renee
function multiply(a,b) {
return a * b;
}
data = [1,2,3];
for(var d in data) {
answer = multiply(data[d], 2);
console.log(answer);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment