xxxxxxxxxx
var a = 23;
var b = "23";
a == b // true (Equalit without type check)
a === b // false (Equality with type check)
xxxxxxxxxx
string = "69"
integer = 69
print(string is integer) # Prints False, as the values are the same but NOT the datatypes
print(string == integer) # Prints False, as the values are the same (a type check is not performed with ==)
xxxxxxxxxx
console.log(1=="1"); /*true, same value*/
console.log(1==="1")/*false, same value, different type*/