Skip to content

Instantly share code, notes, and snippets.

@Tom32i
Created August 22, 2013 09:00
Show Gist options
  • Save Tom32i/6304787 to your computer and use it in GitHub Desktop.
Save Tom32i/6304787 to your computer and use it in GitHub Desktop.
So is it a number or not? Make up your mind Javascript!
var a = parseFloat("");
alert(typeof(a)); // "Number";
alert(a); // "NaN" a.k.a. Not a Number;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment