w3resource

JavaScript: Check whether a string is lower case or not

JavaScript fundamental (ES6 Syntax): Exercise-197 with Solution

Write a JavaScript program to check whether a string is lower case or not.

  • Convert the given string to lower case, using String.prototype.toLowerCase() and compare it to the original.

Sample Solution:

JavaScript Code:

// Define a function 'isLowerCase' that checks if the given string 'str' contains only lowercase letters
const isLowerCase = str =>
  // Check if the given string 'str' is equal to its lowercase version
  str === str.toLowerCase();

// Test cases to check if the strings contain only lowercase letters
console.log(isLowerCase('abc'));   // true (all letters are lowercase)
console.log(isLowerCase('a3@$'));  // true (all letters are lowercase)
console.log(isLowerCase('Ab4'));   // false (one letter is uppercase)

Output:

true
true
false

Visual Presentation:

JavaScript Fundamental: Check whether a string is lower case or not.
JavaScript Fundamental: Check whether a string is lower case or not.

Flowchart:

flowchart: Check whether a string is lower case or not

Live Demo:

See the Pen javascript-basic-exercise-197-1 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program that will return true if the specified value is null, false otherwise.
Next: Write a JavaScript program to check if the given argument is a function.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/javascript-exercises/fundamental/javascript-fundamental-exercise-197.php