Answers for "check if strig is only capital js"

6

javascript check if all capital letter

function isUpper(str) {
    return !/[a-z]/.test(str) && /[A-Z]/.test(str);
}

isUpper("FOO"); //true
isUpper("bar"); //false
isUpper("123"); //false
isUpper("123a"); //false
isUpper("123A"); //true
isUpper("A123"); //true
isUpper(""); //false
Posted by: Guest on October-30-2020

Code answers related to "check if strig is only capital js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language