Skip to content

Instantly share code, notes, and snippets.

@chikoski
Last active August 29, 2015 14:19
Show Gist options
  • Select an option

  • Save chikoski/2299dd43379dee0344fa to your computer and use it in GitHub Desktop.

Select an option

Save chikoski/2299dd43379dee0344fa to your computer and use it in GitHub Desktop.
function add(a, b){
return a + b;
}
function subtract(a, b){
return a - b;
}
function multiply(a, b){
return a * b;
}
function calc(a, b, c){
return 3 * a + 2 * b - c;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment