Documentation

or()

Combines this binding with another using OR semantics.

or(other: Binding): Binding<T>;

Summary

Returns the first truthy value, or the last falsy value if neither is truthy.

Parameters

Return value

A new binding with OR logic applied

Related