Mirza Mohibul Hasanmohibulrefat.hashnode.dev路Apr 11, 2024JavaScript's 'NaN': The Notoriously Awkward Number馃槢NaN is a global property in JavaScript that represents a value that is "Not a Number". Despite its name, NaN is still considered a numeric data type in JavaScript. If you check the data type of NaN using the 'typeof' operator, you'll find that it ret...JavaScript
Gauravalpha-geek.hashnode.dev路Dec 10, 2022Weird Behavior of isNaN() in JavaScript.In this article, I have covered** 9 scenarios to check how isNaN() is behave with different inputs**. Let's see it one by one : I have divided this article into 2 parts A) isNaN() working as per our expectation. B) Weird behavior of isNaN(). A) isNa...1 like路52 readsjavascript fun