Skip to content

Instantly share code, notes, and snippets.

@bilalmalkoc
Created August 31, 2019 13:55
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 bilalmalkoc/65b9a0e3f47c602916ce06f6281027ae to your computer and use it in GitHub Desktop.
Save bilalmalkoc/65b9a0e3f47c602916ce06f6281027ae to your computer and use it in GitHub Desktop.
// Doğru kullanım
if( condition ) {
action1();
action2();
} elseif( condition2 && condition3 ) {
action3();
action4();
} else {
defaultaction();
}
// Yanlış kullanım
if( condition ) action1();
if( condition )
action1();
if( condition ):
action1();
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment