difference between is and == code example
Example 1: difference between == and ===
var a = 23;
var b = "23";
a == b // true (Equalit without type check)
a === b // false (Equality with type check)
Example 2: python is
The is keyword is used to test if two objects refer to the same object.