Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save trycf/6135fb3c7488a677b2a77973b3591716 to your computer and use it in GitHub Desktop.

Select an option

Save trycf/6135fb3c7488a677b2a77973b3591716 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfset foo = val(3)>
<cfset bar="">
<cfset quuz="">
<cfif bar eq "" and quuz neq "">
<cfset bar = quuz>
<cfelseif bar eq "">
<cfset bar = 0>
</cfif>
<cfdump label="old" var="#bar#">
<cfset bar = (
(!len(bar) and val(quuz))
?
(!len(bar) : quuz
: 0
) >
<cfdump label="new" var="#bar#" abort>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment