Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
When I have the following expression in a validator, I expect the output to be false, based on the OR gate truth table; however, the output is true. Why is it true?
output = (false || false);
OR gate truth table
A | B | A+B |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
Hi @Willie
In the expression of the validator function you can use all the JavaScript comparison operators. Not sure it will work if you use a logical operator.
Regards,
Sachin