regex contains a capital and a lowercase javascript code example
Example: regex for lowercase letters js
function hasLowerCase(str) {
return (/[a-z]/.test(str));
}
function hasLowerCase(str) {
return (/[a-z]/.test(str));
}