Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save trycf/8695c37b35e2f020966fa11ada392bea to your computer and use it in GitHub Desktop.

Select an option

Save trycf/8695c37b35e2f020966fa11ada392bea to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
a = 1;
b = "1";
x = true;
y = "true"
dump( isValid("boolean", a));
dump( isValid("boolean", b));
dump( isValid("boolean", x));
dump( isValid("boolean", y));
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment