Skip to content

Instantly share code, notes, and snippets.

Created September 18, 2016 13:37
TryCF Gist
<cfscript>
myNumber = 10;
writeOutput( myNumber.len() );
//This will throw a "The len method was not found"
//myJavaNumber = JavaCast( "int", myNumber );
// writeOutput( myJavaNumber.len() );
//This will throw a "The len method was not found"
myQueryNumber = queryNew( "id", "integer", {id: 16} ).id;
writeDump( myQueryNumber.len() );
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment