Skip to content

Instantly share code, notes, and snippets.

@OfTheDelmer
Created October 7, 2013 20:33
Show Gist options
  • Save OfTheDelmer/6874469 to your computer and use it in GitHub Desktop.
Save OfTheDelmer/6874469 to your computer and use it in GitHub Desktop.

function add(a,b){ alert("Our second function is called") return a+b; }

function addTwoThings(a,b){
alert("First function is called")
return add(a,b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment