string contains no uppercase characters 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));
}