Created
February 18, 2026 02:29
-
-
Save trycf/8695c37b35e2f020966fa11ada392bea to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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