Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q1008 Is there an alternative for isNan() which is only supported in javascript1.1?

You are here: irt.org | FAQ | JavaScript | Number | Q1008 [ previous next ]

Try:

function myIsNaN(what) { return (what != ((what - 0) + '')); }

©2018 Martin Webb