Ben ButlerFollowSep 3, 2021·1 min readSalesforce Apex: Underused OperatorsSome Apex operators seem underutilized. They are an easy way to make the code succinct, a bit cleaner, and a bit easier to maintain.x |= y//x = x || yx &= y//x = x && yz = x?.y//z = (x == null) ? null : x.y;