In this article, you will learn how to convert a string to lowercase letters in Javascript.
In this article, you will learn how to convert a string to lowercase letters in Javascript.
Let’s say you have a string variable named ‘a’ with value “CODESOURCE.IO”.
var a = "CODESOURCE.IO";
In order to convert the string to lowercase letters, you can use the toLowerCase()
method.
var a = "CODESOURCE.IO";
console.log(a.toLowerCase());
Note: The toLowerCase()
method functions by converting a string to lowercase letters.
4 Ways You Can Get Rid of Dirty Side Effects for Cleaner Code in JavaScript. Bugs are born in many ways. Creating side effects is one of them. Some people say side effects are evil, some say they’re not.
Static code analysis is a method of debugging by examining source code before a program is run. It's done by analyzing a set of code against a set (or multiple sets) of coding rules. Static code analysis and static analysis are often used interchangeably, along with source code analysis.
Who Else Wants to Write Clean JavaScript Code? 7 Tips to Make Your Coworkers Fall in Love With Your Code.
JavaScript Tutorial | JavaScript Code Examples. Free JavaScript code examples from codepen.io and libraries from github.io: buttons, hover effects, loaders, modal windows, text effects, menu and other.
Don’t waste time writing long code while you can make it short, yet clearer and easier to read. In this Javascript tutorial, we'll discuss 15 Simple Coding Techniques to Get Your Tasks Done with Shorter Code in JavaScript