What is the proper way to append an element on the end of an optional array? Let\'s say I have an optional array, myArray, and I want to append \'99\' on the end. Append() d
My one liner using nil coalescing:
myArray = (myArray ?? []) + [99]