Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

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 trycf/3cf29ac9c88c9d79bee836efcea6f169 to your computer and use it in GitHub Desktop.
Save trycf/3cf29ac9c88c9d79bee836efcea6f169 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
a =1;
dump(var=a, label="before");
function test( a ){
dump(var=a, label="a");
dump(var=arguments.a, label="arguments.a");
arguments.a=2;
dump(a);
}
test(a);
dump(a);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment