Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js to lowercase

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: #js #lowercase
ADD COMMENT
Topic
Name
3+1 =