Skip to content

Instantly share code, notes, and snippets.

@ibare
Created January 9, 2015 01:24
Show Gist options
  • Save ibare/9c0b829cd6d13b02f01c to your computer and use it in GitHub Desktop.
Save ibare/9c0b829cd6d13b02f01c to your computer and use it in GitHub Desktop.
function add(a, b) {
return a + b;
}
function sub(a, b) {
return a - b;
}
function multi(a, b) {
return a * b;
}
function div(a, b) {
return a / b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment