Answers for "how to change if the value of input has uppercase in javascript"

CSS
4

conveert text to uppercase in input field

<input type="text" class="normal" 
       name="Name" size="20" maxlength="20" 
       style="text-transform:uppercase" />
Posted by: Guest on May-19-2020
0

check to see if work is uppercase javascript

var word = 'apple' //Expected: false

//Use word[0] to grap the first letter
if (word[0] == word[0].toUpperCase()) {
  //Word is uppercase
} else {
  //Word is not uppercase
}
Posted by: Guest on July-15-2021

Code answers related to "how to change if the value of input has uppercase in javascript"

Browse Popular Code Answers by Language