+ 5
What is the meaning of dis👉 != ??
4 ответов
+ 8
! symbol inverts the meaning of the following sign or statement. It basically means "NOT". So it means NOT equal here. Same !true means not true.
This expression is very useful when you want to exclude some specific numbers or text strings from your search. For example:
if (day != weekend}{
alert("good luck at work");
} else {
alert("happy weekend");
}
+ 5
not equal
+ 2
tnks
+ 1
"!=" This is the symbol of not equal in Java