Created
April 12, 2022 17:00
-
-
Save trycf/b61f74fdeadc95ae44fc2e23035c5c25 to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains 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> | |
i=[1,2,3,4,5]; | |
i.append([6,7], true); | |
writeDump(i); | |
i=[1,2,3,4,5]; | |
i.append([6,7], false); | |
writeDump(i); | |
i=[1,2,3,4,5]; | |
i.push([6,7]); // Works the same as append(..., false); | |
writeDump(i); | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment