and()
Combines this binding with another using AND semantics.
and(other: Binding): Binding<T>;
Summary
Returns the last value if both are truthy, otherwise returns the first falsy value.
Parameters
- other — Another binding to combine with
Return value
A new binding with AND logic applied
Related
class Binding
A class that represents a property binding.
