Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save trycf/830070ace1fe66c20a1d36893edf79a4 to your computer and use it in GitHub Desktop.

Select an option

Save trycf/830070ace1fe66c20a1d36893edf79a4 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
startTime = getTickCount();
arr = [];
for (var i = 1; i <= 9999; i++) {
arrayappend(arr,i);
}
endTime = getTickCount();
Time = endTime - startTime;
writeoutput(Time);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment