Answers for "how to use includes for capital letter in node js"

2

javascript capitalize

myString = 'the quick green alligator...';
myString.replace(/^\w/, (c) => c.toUpperCase());

myString = '    the quick green alligator...';
myString.trim().replace(/^\w/, (c) => c.toUpperCase());
Posted by: Guest on August-06-2020

Code answers related to "how to use includes for capital letter in node js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language