Answers for "returns true if all characters in the string are lowercase otherwise it should return false. js"

1

how to find if given character in a string is uppercase or lowercase in javascript

var str = S;

  if (str == str.toUpperCase())
  {
    console.log(" Uppercase");
  }
  else
  {
    console.log("Lowercase");
  }
Posted by: Guest on September-17-2020

Code answers related to "returns true if all characters in the string are lowercase otherwise it should return false. js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language