Nick
08/03/2024, 1:38 PMspills
08/06/2024, 7:26 PM<cfscript>
a = { b = { c = {} } };
test = isNull(a?.xyz?.b)
writeOutput(test)
test = isNull(a.b?.xyz)
writeOutput(test)
test = isNull(a.b.c?.xyz)
writeOutput(test)
test = a.b.c.isEmpty()
writeDump(test)
</cfscript>