mohitkumar gupta wrote:
How to EL operator work left to right or viceversa if in an EL we have combination of Arithmetic ,Logical and Relational operators ?
The same way you expect them to work in java code. The operator precedence is same as in java.
For example: ${5 + 3 lt 6} will work same way as: (5 + 3 < 6) in a java code.