0
What is- "!="?
I not remember
3 Respostas
+ 2
means logical "not"
JS example:
var x = 5;
if(x != 5) //false, x is equal to 5 , must be not
{some code } //will not work
-----------------------------------------------------------------------------
another example:
var x = 4;
if(x != 5) //true, x not equal 5
{some code } //will work
+ 1
It's the opposite of ==
0
It means "does not equal"
It's the same as this: ≠