Skip to content

Instantly share code, notes, and snippets.

@gregpalaci
Created October 4, 2023 17:43
Show Gist options
  • Save gregpalaci/47530d43d2652ca4ba2d6bed82797618 to your computer and use it in GitHub Desktop.
Save gregpalaci/47530d43d2652ca4ba2d6bed82797618 to your computer and use it in GitHub Desktop.
Ensure a String is Numeric in JavaScript
/**
* Determine whether the given `input` is a number.
*
* @param {String} input
*
* @returns {Boolean}
*/
const isNumericString = (input) => typeof input === 'string' && !Number.isNaN(input)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment