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