Created
February 7, 2020 11:37
-
-
Save vikaskanani/d3ee70088a79f2ac711616319983f286 to your computer and use it in GitHub Desktop.
arrayslice should not give error
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> | |
myarray = ["one","two","three","TWO","five","Two"]; | |
res = myarray.slice(5,10); | |
writedump(res); | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment