Quiz Challenges
52
Question 6 of 52
12%
6
a and b are two constants. What will be the output on the console?
const
a
=
'42'
;
const
b
=
42
;
console
.
log
(
(
a
==
b
)
&&
(
a
===
b
)
)
;
A
true
B
false
Submit Answer
Previous
6
/
52
Next