Skip to content

Instantly share code, notes, and snippets.

Created January 26, 2016 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/173525410a6a70e2285e to your computer and use it in GitHub Desktop.
Save anonymous/173525410a6a70e2285e to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
var foo = [];
for(var i=1;i<50000;i++){
foo.append("");
}
// 25000 -> 90 ms
// 50000 -> 350 ms
//100000 -> 1250 ms
//200000 -> 7300 ms
//400000 -> 30000 ms
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment