Leaderboard Archive
Javascript Apr 6, 2026

What does this output?

console.log(0.1 + 0.2 === 0.3)
The Correct Answer
B
Explanation
Floating point precision issue. 0.1 + 0.2 = 0.30000000000000004 in JavaScript due to IEEE 754 binary floating point.

Ready for your shot?

Join thousands of developers solving one logic puzzle every morning.

Solve Today's Challenge →