Answers for "change initial value of string to capital letter in react js"

7

capitalize first letter javascript

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

console.log(capitalizeFirstLetter('foo bar bag')); // Foo
Posted by: Guest on June-22-2020

Code answers related to "change initial value of string to capital letter in react js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language