I would like to know the difference between the two operators that would be:
(1): ==
(2): ===
If possible, I would also like to understand the use of their opposite operators in this case:
(3): !=
(4): !==
What would be the difference between the operators:
1:
if (foo == "foo")
2:
if (foo === "foo")
And what would be the difference between opposing operators:
3:
if (foo !== "foo")
4:
if (foo != "foo")
Could anyone tell me?