and<T> function

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

Perform JavaScript logical and comparison (&&) of two expressions.

Implementation

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