Skip to content

Instantly share code, notes, and snippets.

@m-mujica
Last active December 20, 2015 00:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m-mujica/6042405 to your computer and use it in GitHub Desktop.
Save m-mujica/6042405 to your computer and use it in GitHub Desktop.
var sum = function sum(x, y) {
if (!x) {
x = 200;
}
if (!y) {
y = 300;
}
return x + y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment