I’ve only been trying it in Firefox’s JavaScript console, but neither of the following statements return true:
parseFloat(\'geoff\') == NaN; parseFloat(\'ge
Found another way, just for fun.
function IsActuallyNaN(obj) { return [obj].includes(NaN); }