Skip to content

Instantly share code, notes, and snippets.

View aaa-manuelhe's full-sized avatar

Manuel Hernandez aaa-manuelhe

View GitHub Profile
@pinalbhatt
pinalbhatt / Javascript isNumeric
Last active November 14, 2020 22:00
Javascript isNumeric() function
/*
isNumeric function in Javascript
*/
function isNumeric(n) {
return !isNaN(parseFloat(n)) && isFinite(n);
}