I do not know if this question have been asked before.
But I was wondering when I should use <> over !=
I know that if I do something like this the result will be equal but I do not know the difference between the two operators
if (1 != 0) {
// true
}
and
if (1 <> 0) {
// true
}
Please explain me the differences.