Skip to content

Instantly share code, notes, and snippets.

@cg4jins
Created April 12, 2018 10:56
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 cg4jins/aa8bcceb79d3ad75966e96443652249b to your computer and use it in GitHub Desktop.
Save cg4jins/aa8bcceb79d3ad75966e96443652249b to your computer and use it in GitHub Desktop.
function doABC() {
doA()
doB()
doC()
}
function doA() {
doBasicA()
doAnotherA()
}
function doB() {
doBasicB()
doAnotherB()
}
function doC() {
doBasicC()
doAnotherC()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment