Skip to content

Instantly share code, notes, and snippets.

@liuxd
Last active December 4, 2018 21:15
Show Gist options
  • Save liuxd/0ddf4d8d1280d2604de534bd39427ba1 to your computer and use it in GitHub Desktop.
Save liuxd/0ddf4d8d1280d2604de534bd39427ba1 to your computer and use it in GitHub Desktop.
[is_numeric() in JS]
var t1 = 100, t2 = '100', t3 = 'test';
console.log(isNaN(t1)); // false
console.log(isNaN(t2)); // false
console.log(isNaN(t3)); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment