or<T> function

T or<T>(
  1. Object? first,
  2. Object? second
)

Perform JavaScript logical or comparison (||) of two expressions.

Implementation

external T or<T>(Object? first, Object? second);