Skip to content

Instantly share code, notes, and snippets.

@65
Created March 10, 2012 10:32
Show Gist options
  • Save 65/2011086 to your computer and use it in GitHub Desktop.
Save 65/2011086 to your computer and use it in GitHub Desktop.
ColdFusion 8 operator syntax && and AND!
<cfif isDefined("client.safe") && Len(client.safe)>
#client.safe#
</cfif>
<cfif isDefined("client.safe") AND Len(client.safe)>
#client.safe#
</cfif>
++ -- % += -= *= /= %= && || !
== != < <= > >=
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment