Groovy Elvis Operator ?:
In a previous post, I discussed the Nullish coalescing operator in JavaScript. On a related note, I thought of writing about the Elvis operator (?.) of Groovy.
A good starting point would be the ternary operator. The ternary operator takes the form of <expression>? <true return expression>