Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/71e5346e340ff0dd326346130c775883 to your computer and use it in GitHub Desktop.
Save trycf/71e5346e340ff0dd326346130c775883 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
a = {
"thirdPartyApi": {
"url": "abc",
"key": "123"
}
};
b = {
"thirdPartyApi": {
"url": "xyz"
}
};
a.append(b);
writeDump(a);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment