Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/d8664be620520252871e91796bef2f61 to your computer and use it in GitHub Desktop.
Save trycf/d8664be620520252871e91796bef2f61 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
data = [];
data[3] = true;
data[4] = false;
for (i = 1; i <= data.len(); i++) {
if( data[i]?:false ) {
writeoutput("Kittens!");
}
else { writeoutput("nope"); }
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment