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 

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

1 Expert Approved Answer
Step: 1 Unlock

Here a is a number 4 and b is a string 4 1 When you ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!