Skip to content

Instantly share code, notes, and snippets.

@cloudshooterhuman
Last active September 19, 2018 10:03
Show Gist options
  • Save cloudshooterhuman/f9947373d6c27d1c0b352e759ba277d8 to your computer and use it in GitHub Desktop.
Save cloudshooterhuman/f9947373d6c27d1c0b352e759ba277d8 to your computer and use it in GitHub Desktop.
if (product.getType == productType.TYPE_A) {
// ...
} else if (product.getType == productType.TYPE_B) {
// ...
} else if (...) {
// ...
}
else {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment