I let function A and function B print the same thing. But why the object constructed by A and the object b constructed by B are not equal?
function A() {
alert("k")
};
function B() {
alert("k")
};
let a = new A();
let b = new B();
alert(a == b);