Documentation for infix // assembled from the following pages:

Language documentation: Operators §

From Operators

(Operators) infix // §

The defined-or operator or infix // returns the first defined operand, or else the last operand. Short-circuits.

say Any // 0 // 42;         # OUTPUT: «0␤»