Question: 1.The following will evaluate display false. var a = 1; var b = 1; console.log(a === b); True or False? 2.What is the value of
1.The following will evaluate display false. var a = 1; var b = "1"; console.log(a === b);
True or False?
2.What is the value of a after executing the following code snippet? var a = 1; a += 1;
1
undefined
2
0
3.Operators at the same level of precedence associate(evaluate) from right to left.
True or False?
4.The following code will display true. var a = 1; var b = 2; console.log(a === b);
True or False?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
