Comparison
Last updated
Was this helpful?
Last updated
Was this helpful?
Comparison filters are useful for comparisons and checking data types, especially for conditional logic. They will result in a true or false boolean value.
- Returns the existing value with its bits flipped.
- Returns a boolean if both values are equal.
- Returns whether or not the value is even.
- Returns a boolean if the left value is greater than the right value.
- Returns a boolean if the left value is greater than or equal to the right value.
- Returns whether or not the value is in the array.
- Returns whether or not the value is a numerical indexed array.
- Returns whether or not the value is a boolean.
- Returns whether or not the value is a decimal value.
- Returns whether or not the value is empty ("", null, 0, [], {}).
- Returns whether or not the value is an integer.
- Returns whether or not the value is null
- Returns whether or not the value is an object.
- Returns whether or not the value is text.
- Returns a boolean if the left value is less than the right value
- Returns a boolean if the left value is less than or equal to the right value
- Returns the opposite of the existing value evaluated as a boolean
- Returns a boolean if both values are not equal
- Returns whether or not the value is odd
Returns the existing value with its bits flipped.
Returns a boolean if both values are equal.
Returns whether or not the value is even, this returns a response of true or false.
Returns a boolean if the left value is greater than the right value.
Returns a boolean if the left value is greater than or equal to the right value.
Returns whether or not the value is in the Array, this returns a response of true or false.
Returns whether or not the value is a numerical indexed array.
Returns whether or not the value is a boolean.
Returns whether or not the value is a decimal value.
Returns whether or not the value is empty ("", null, 0, [], {}).
Returns whether or not the value is an integer.
Returns whether or not the value is null, this returns a response of true or false.
Returns whether or not the value is an object.
Returns whether or not the value is text.
Returns a boolean if the left value is less than the right value
Returns a boolean if the left value is less than or equal to the right value.
Returns the opposite of the existing value evaluated as a boolean.
Returns a boolean if both values are not equal.
Returns whether or not the value is odd, this returns a response of true or false.