Here is the quick JavaScript code snippet to capitalize the first letter of a string. function ucFirst(string) { return string.charAt(0).toUpperCase() + string.slice(1); } How to…
1 CommentTutorials focused on Web Development, ReactJS, JavaScript, PHP, Database Design, Devops
Here is the quick JavaScript code snippet to capitalize the first letter of a string. function ucFirst(string) { return string.charAt(0).toUpperCase() + string.slice(1); } How to…
1 Comment