Last active
August 29, 2015 14:16
-
-
Save callerobertsson/f2171288d9f9555cde5d to your computer and use it in GitHub Desktop.
Javascript: Empty string is a number
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (isNaN("")) { | |
console.log('Empty string is not a number'); | |
} | |
else { | |
console.log('Empty string IS a number!!!'); | |
} | |
// => Empty string IS a number!!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment