Question: Write the output var a = 4; var b = 4; if(a == b){ console.log(yes); } if(a === b){ } console.log(yes); Your answer 5
Write the output var a = 4; var b = "4"; if(a == b){ console.log("yes"); } if(a === b){ } console.log("yes"); Your answer 5 points
Step by Step Solution
There are 3 Steps involved in it
Here a is a number 4 and b is a string 4 1 When you ... View full answer
Get step-by-step solutions from verified subject matter experts
