!= function:
- Can also be called as
<>
Compare two value and return true if both are not equals.
Examples:
- running:
(!= 1, 3)will give:true
- running:
(!= 1, 1)will give:false
- running:
(!= "1", 1)will give:true
- running:
(!= "abc", "abc")will give:false