Hi, I didn't get any bites on my question in the c...
# adobe
n
Hi, I didn't get any bites on my question in the cfml-general channel regarding the safe navigation operator. Would anyone here be able to answer my questions? https://cfml.slack.com/archives/C06T99N9G/p1722546370626779
s
more fun:
Copy code
<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>