Answers for "how to check if the first letter of a string is uppercase"

0

how to check if the first letter of a string is capitalized or uppercase in js

/**** Check if First Letter Is Upper Case in JavaScript***/
function startsWithCapital(word){
    return word.charAt(0) === word.charAt(0).toUpperCase()
}

console.log(startsWithCapital("Hello")) // true
console.log(startsWithCapital("hello")) // false
Posted by: Guest on December-30-2020
2

python method to check for uppercase character

a="DEMO"
print(a.isupper())
Posted by: Guest on August-07-2020

Code answers related to "how to check if the first letter of a string is uppercase"

Python Answers by Framework

Browse Popular Code Answers by Language