Seokky
1/10/2018 - 10:37 AM

isNumeric() js

function isNumeric(n) {
  return !isNaN(parseFloat(n)) && isFinite(n);
}