Skip to content

Instantly share code, notes, and snippets.

@parwatcodes
Last active December 16, 2019 11:22
Show Gist options
  • Save parwatcodes/75079e7fba443a89961494f3575a3610 to your computer and use it in GitHub Desktop.
Save parwatcodes/75079e7fba443a89961494f3575a3610 to your computer and use it in GitHub Desktop.
phone number validation
function validate(phone) {
var regex = /^\+(?:[0-9]?){6,14}[0-9]$/;
if (regex.test(phone)) {
// Valid international phone number
return 'valid'
} else {
return 'invalid'
// Invalid international phone number
}
}
phone = '+9779805779427'
console.log(validate(phone))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment