up vote 0 down vote favorite
share [g+] share [fb]

For example, I can have a code like:

<logic:equal name="userForm" property="isRishi" value="YES">
  Welcome, your name is Rishi</logic:equal>

And another code like this:

<logic:notEqual name="userForm" property="isRishi" value="NO">
  Welcome, your name is Rishi</logic:notEqual>

Both would function the same. So what difference is there in using these two tags?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 1 down vote accepted

If there are only two possible values, the only difference is that the second form is harder to understand due to the double negation.

If isRishi can have values other than "YES" and "NO" (e.g. null) then the difference should be obvious.

link|improve this answer
feedback

They exist for better readability. notEqual to no is convoluted and harder to grasp.

And also, for the same reason why the ! operator exists.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.