Can somebody explain why in the first example below the comparison is returning false?
In the second example, you can see that just changing the first character it will return true instead.
What am I missing?
(1 != "1f9bb589-434d-46ce-9b0d-fe101619ce6f") -> bool(false)
vs
(1 != "2f9bb589-434d-46ce-9b0d-fe101619ce6f") -> bool(true)