As, I think every programming language compares an int
and a char
on behave of ASCII
value of char
I am new to java-Expression-Language. Now here, I have created a .jsp
file in NETBEANS 5.5.1
CODE:
<%=('1' > 2)?"true":"false"%> //true
${('1' > 2)?"true":"false"} //false
What is difference in these expressions?