Maybe I have a mental problem, but I'm referring to a problem like this:
let a=0.1;
let b=0.2;
let c=0.3;
let message='';
if((a+b) === c) {
message='Hello!';
} else {
message='Bye!';
}
console.log(message);
It return false ("bye" in this case). And I discovered why recently.
Exist a complete guide for all this particular, or "non-ordinary", issue cases of Javascript?