var a = 23; var b = "23"; a == b // true (Equalit without type check) a === b // false (Equality with type check)