Answers for "JavaScript making the first letter in a string uppercase and the rest lowercase"

1

javascript string first letter lowercase

// for lowercase on first letter
let s = "This is my string"
let lowerCaseFirst = s.charAt(0).toLowerCase() + s.slice(1)
Posted by: Guest on January-11-2021
0

first letter string uppercase javascript

function capitalizeFirstLetter(string) {
  return string.charAt(0).toUpperCase() + string.slice(1);
}

console.log(capitalizeFirstLetter('foo')); // Foo
Posted by: Guest on August-31-2020

Code answers related to "JavaScript making the first letter in a string uppercase and the rest lowercase"

Code answers related to "Javascript"

Browse Popular Code Answers by Language