HomeArticlesFAQsXREFGamesSoftwareInstantBooksBBSAboutFOLDOCRFCsFeedbackSearchSite-Map
logo

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) + '')); }

©2011 Martin Webb