Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

to lowercase js

const string = "A string";

const upperCase = string.toUpperCase();
console.log(upperCase); // -> A STRING

const lowerCase = string.toLowerCase();
console.log(lowerCase); // -> a string
Source by www.textbotonline.com #
 
PREVIOUS NEXT
Tagged: #lowercase #js
ADD COMMENT
Topic
Name
6+9 =