Skip to main content Accessibility Feedback

Strings

String.prototype.toLowerCase()

Transform all text in a string to lowercase.

let text = 'This sentence has some MIXED CASE LeTTeRs in it.';

// returns "this sentence has some mixed case letters in it."
let lower = text.toLowerCase();

Preorder my new course on Web Components! Want to learn how to build Web Components from scratch, master best practices, and more? Preorder today and get $100 off of the launch price.


Find this useful? You can support my work by purchasing an annual membership.