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/694e73a66cdb9981174bbec5b0208c7c to your computer and use it in GitHub Desktop.
Save trycf/694e73a66cdb9981174bbec5b0208c7c to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
// from https://cfml.yakhnov.info/global-and-local-variables-warning/
var a = 123;
function test() {
a = [];
return nullValue();
}
a = test();
dump(a);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment