Skip to content

Instantly share code, notes, and snippets.

@samfarmer
Created September 27, 2012 17:19
Show Gist options
  • Save samfarmer/3795231 to your computer and use it in GitHub Desktop.
Save samfarmer/3795231 to your computer and use it in GitHub Desktop.
CF Null and structKeyExists
<cfscript>
noise = { siren="ambulance", volume=11 };
writeDump( noise );
noise.volume = javacast("null", "" );
writeDump( noise );
writeDump( structKeyExists( noise, "volume" ) );
writeDump( isNull( noise.volume ));
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment