Skip to content

Instantly share code, notes, and snippets.

@VoloshchenkoAl
Created February 4, 2016 11:22
Show Gist options
  • Save VoloshchenkoAl/b9cc6363f0f32161eb0b to your computer and use it in GitHub Desktop.
Save VoloshchenkoAl/b9cc6363f0f32161eb0b to your computer and use it in GitHub Desktop.
function isNumeric(n) {
return !isNaN(parseFloat(n)) && isFinite(n);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment