What value is obtained by executing the following code?
let x = 10, y = "10";
console.log(`${x === y ? "Equal" : "Different"}`);
What value is obtained by executing the following code?
let x = 10, y = "10";
console.log(`${x === y ? "Equal" : "Different"}`);