Skip to content

Instantly share code, notes, and snippets.

@Youmoo
Created November 12, 2014 10:57
Show Gist options
  • Save Youmoo/22a60dafaa4ad4f8c48b to your computer and use it in GitHub Desktop.
Save Youmoo/22a60dafaa4ad4f8c48b to your computer and use it in GitHub Desktop.
if-else in 2 flavors

两种风格的if-else比较

flavor 1:

var cond=true;
if(cond){
    // your logic
}else{
    // your logic
}

flavor 2:

var cond=true;
if(cond){
    // your logic
    return;
}

// your logic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment