Skip to content

Instantly share code, notes, and snippets.

@cg4jins
Created April 12, 2018 11:13
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/764ca0c1107322e072f87bcea5d789b4 to your computer and use it in GitHub Desktop.
Save cg4jins/764ca0c1107322e072f87bcea5d789b4 to your computer and use it in GitHub Desktop.
function doABC() {
doA()
if (a > b && c > 0 || d == 0) {
doBasicB()
if (e < -1){
doAnotherB()
}
}
doC();
}
function doA() {
doBasicA()
doAnotherA()
}
function doC() {
doBasicC()
doAnotherC()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment