Guest User

Untitled

a guest
Dec 14th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <cfscript>
  2. foo = [1, 2, 3];
  3.  
  4. bar = javacast( "null", "");
  5.  
  6. baz = ( foo.len() ?: "can't do it captain");
  7.  
  8. frobozz = ( bar.len() ?: "can't do it captain");
  9. </cfscript>
  10.  
  11. <cfoutput>
  12. <ul>
  13. <li>baz: #baz#</li>
  14. <li>frobozz: #frobozz#</li>
  15. </ul>
  16. </cfoutput>
Add Comment
Please, Sign In to add comment