In JavaScript, you can do this:
var a = null; var b = 'I'm a value'; var c = null; var result = a || b || c;
And ‘result’ will get the value of ‘b’ because JavaScript short-circuits the ‘or’ operator.
I want a one-line idiom to do this in ColdFusion and the best I can come up with is:
<cfif LEN(c) GT 0><cfset result=c></cfif> <cfif LEN(b) GT 0><cfset result=b></cfif> <cfif LEN(a) GT 0><cfset result=a></cfif>
Can anyone do any better than this?
ColdFusion doesn’t have nulls.
Your example is basing the choice on which item is an empty string.
If that is what you’re after, and all your other values are simple values, you can do this:
(Which works because the standard list functions ignore empty elements.)