Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created May 24, 2022 16:02
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 lgolubyev/a7c026f6a517842d5aff04ec32052fb5 to your computer and use it in GitHub Desktop.
Save lgolubyev/a7c026f6a517842d5aff04ec32052fb5 to your computer and use it in GitHub Desktop.
if (condition 1)
{
// code executed if condition is true
}
else if {condition 2}
{
// code executed if condition is true
}
else
{
// code exectuted if the previous conditions are false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment