const firstValue = 10; const secondValue = "10"; console.log(firstValue == secondValue); // output : true console.log(firstValue === secondvalue); // output : false
const firstValue = 10; const secondValue = "10"; console.log(firstValue == secondValue); // output : true console.log(firstValue === secondvalue); // output : false