Skip to content

Instantly share code, notes, and snippets.

@iamlucianojr
Created August 26, 2020 12:33
Show Gist options
  • Save iamlucianojr/9aee3210b9ff3ae2405d0a358cd57ce6 to your computer and use it in GitHub Desktop.
Save iamlucianojr/9aee3210b9ff3ae2405d0a358cd57ce6 to your computer and use it in GitHub Desktop.
// Function to check letters and numbers
function alphanumeric(senha) {
var letterNumber = /^[0-9a-zA-Z]+$/;
if (senha.match(letterNumber)) {
return true;
}
return false
}
if (alphanumeric('Raiza^')) {
console.log('Possui apenas letras ou números')
} else {
console.log('Possui caracteres que não são letras ou números')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment