Created
January 21, 2026 05:53
-
-
Save trycf/2d15d6047b49eff20e008f23d0d549fa 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> | |
| myArray = [1,2,3,4,5,6,7]; | |
| myArray.each(function(track, index) { | |
| if( track > 3 ){ | |
| writeDump(track); | |
| break; | |
| } | |
| }) | |
| for (track in myArray) { | |
| if( track > 3 ){ | |
| writeDump(track); | |
| break; | |
| } | |
| } | |
| </cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment