Skip to content

Instantly share code, notes, and snippets.

@okram999
Created November 6, 2016 18:56
Show Gist options
  • Save okram999/ee352282ce516db7676afb16fdbb8763 to your computer and use it in GitHub Desktop.
Save okram999/ee352282ce516db7676afb16fdbb8763 to your computer and use it in GitHub Desktop.
Groovy Shorthands
Ternary Operators:
#1:
def s = ""
if (s != null && s.length() > 0) {
result = 'Found'
}
else {
result = 'Not Found'
}
#2:
def s = ""
result = (s != null && s.length() > 0) ? 'Found' : 'Not Found'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment