Beginner JavaScript
Q4 / 100

What does === check in JavaScript?

Correct! Well done.

Incorrect.

The correct answer is B) Value and type equality without coercion

B

Correct Answer

Value and type equality without coercion

Explanation

=== (strict equality) checks both value and type without coercion. 1 === "1" is false. == uses type coercion.

Progress
4/100