javascript string match regex variable include lowercase code example
Example: regex for lowercase letters js
function hasLowerCase(str) {
return (/[a-z]/.test(str));
}
function hasLowerCase(str) {
return (/[a-z]/.test(str));
}