Skip to content

Instantly share code, notes, and snippets.

@jtribble
Last active July 25, 2016 04:55
Show Gist options
  • Save jtribble/674ffe21471ee5c7a1db to your computer and use it in GitHub Desktop.
Save jtribble/674ffe21471ee5c7a1db to your computer and use it in GitHub Desktop.
Is string a valid us phone number
/**
* Is string a valid phone number?
*
* @param {string} str
* @return {boolean}
*/
var isValidPhone = function (str) {
if (!str) return false;
var count = str.replace(/[^0-9]/g, '').length;
return count == 10 || count == 11;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment