|
|
|
|
|
by wambotron
4442 days ago
|
|
I think the answer to "can something be fuzzy equal to one value and strictly equal to another in JS?" has an easy answer that doesn't take much effort to find. This might be cooler in another language, though. var b = 2; b == '2'; // true b === 2; // true |
|
(b == 1 && b===2 && b === herpderp)