Compares two things by turning them into strings, and comparing them by their string value.
this is the inverse of isEqual.
isEqual
isNotEqual("1", 1); // trueisNotEqual({foo: "bar"}, {foo: "bar"}); // trueisNotEqual([], []); // trueisNotEqual([0], [1]); // falseisNotEqual(false, " false "); // trueisNotEqual(false, "FALSE"); // false Copy
isNotEqual("1", 1); // trueisNotEqual({foo: "bar"}, {foo: "bar"}); // trueisNotEqual([], []); // trueisNotEqual([0], [1]); // falseisNotEqual(false, " false "); // trueisNotEqual(false, "FALSE"); // false
Compares two things by turning them into strings, and comparing them by their string value.