Answers for "Write a function called capitalize that takes a string and returns that string with only the first letter capitalized"

32

javascript capitalize first letter

const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);
Posted by: Guest on March-04-2020
4

capitalise first letter js

const string = "tHIS STRING'S CAPITALISATION WILL BE FIXED."
const string = string.charAt(0).toUpperCase() + string.slice(1)
Posted by: Guest on September-03-2020
11

how to make 1st letter capital in ejs

yourstring.replace(/\w/, c => c.toUpperCase())
Posted by: Guest on December-08-2020

Code answers related to "Write a function called capitalize that takes a string and returns that string with only the first letter capitalized"

Code answers related to "Javascript"

Browse Popular Code Answers by Language