Question 7 of 5213%
7

Consider the following scenario. What gets logged?

const a = 0.1;
const b = 0.2;
const c = 0.3;

console.log(a + b === c);
7/52