Skip to content
Advertisement

IsNaN shows other results

JavaScript

console output

My IsNaN says “12ab” is a number but at the first Non-Number argument its the first non-number, i used the isNaN function twice so idk why it doesnt work

Advertisement

Answer

You’re not comparing the same values here: the first check (saveNumbers) tests isNaN(parseInt("12ab")) while the second tests isNaN("12ab").

saveNumbers will parse “12ab” and return 12, which is a number and not NaN, while isNaN("12ab") will show that the String you pass is indeed NaN.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement