Documentation

Binding​.equal()

Creates a new binding that returns true if all combined binding values are equal.

static equal(
...sources: Array<undefined | null | string | Binding>
): Binding<boolean>;

Summary

Returns true only when all bindings are bound and all values are strictly equal to the first. Returns true if no valid sources remain after filtering.

Parameters

Return value

A new Binding object

Related