Skip to content

Instantly share code, notes, and snippets.

@KhaledElAnsari
Last active July 23, 2023 09:45
Show Gist options
  • Save KhaledElAnsari/72bd20df595d8fa44f3c9cafed922d13 to your computer and use it in GitHub Desktop.
Save KhaledElAnsari/72bd20df595d8fa44f3c9cafed922d13 to your computer and use it in GitHub Desktop.
IFS Algorithm
if(condition1) {
// do action 1
} else if(condition2) {
// do action 2
} else if(condition3) {
// do action 3
} else if(condition4) {
// do action 4
} else if(conditionN) {
// do action N
}
...
else {
// do final action
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment