Skip to content

Instantly share code, notes, and snippets.

@jdalton
Created September 25, 2014 20:17
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 jdalton/01fad5f3357862175504 to your computer and use it in GitHub Desktop.
Save jdalton/01fad5f3357862175504 to your computer and use it in GitHub Desktop.
/* ORIGINAL CODE */
function doSomething(x, y) {
return add(x, y);
}
function add(x, y) {
return x + y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment