Question: Are input && input.x and input?.x equivalent?
input && input.x
input?.x
Answer: Sometimes – if the left side is nullish (null or undefined), it will short-circuit and evaluate to undefined!
null
undefined