Blocks within condition: number
List of all the block within the condition: number group. If you're running an older core version, there may be groups listed here that are not available to you (yet).
condition v10.4.28 returns true if the two values are not equal. Compares any type, not just numbers, and does not coerce, so 1 and "1" count as not equal. When both inputs are empty the output is false. >= and <= condition v10.4.28 returns true if the numbers is between the two numbers. === condition v10.4.28 returns true if the two values are equal. Compares any type: numbers by value across int/float, strings and booleans strictly, objects and arrays deeply. There is no string/number coercion, so "1" does not equal 1. >= condition v10.4.28 returns true if the number is higher or equal. > and < condition v14.0.4 returns true if the number is between the two numbers (exclusive). < condition v10.4.28 returns true if the number is lower. <= condition v10.4.28 returns true if the number is lower or equal. > condition v10.4.28 returns true if the number is higher. Back to
condition Return to the main group to view all sub-groups