Skip to content

Instantly share code, notes, and snippets.

@cranic
Created March 18, 2014 18:13
Show Gist options
  • Save cranic/9626003 to your computer and use it in GitHub Desktop.
Save cranic/9626003 to your computer and use it in GitHub Desktop.
var meth1 = funciton(){
// Do things here
if(gotoMeth2)
meth2();
else
meth3();
};
var meth2 = function(){
// Do more things
meth3();
};
var meth3 = function(){
console.log('You had finished it!');
};
// Start the chain
meth1();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment