Dirk L
Member since Jan 23, 2023
- Profile: /members/14611-dirk-l.htm
- Comments: 1
Recent Blog Comments By Dirk L
-
Using "continue" To Short-Circuit .each() Iteration In ColdFusion
Posted on Jan 23, 2023 at 8:01 PM
Why do you prefer each() over for in ? Two points: It's much slower. https://trycf.com/gist/60de4fc7a8a14052b56f9cc443e10aba/acf2021 That's why I often go the opposite way. Cannot break it. break work's like continue , wtf. return false is not implemented. What I mi... read more »