hello
i am running a simple function and i noticed the strict inequality doesn’t work.
i used a number - 3 and a string - “3”
function tom (a){
if(a !== 3){
return "yes";
}
return "no";
}
console.log(tom("3")); // returns yes although it should return no