Answers for "text to uppercase forst word letter"

CSS
4

How do you make each word in a text start with a capital letter?

h1 {
  text-transform: capitalize;
}
Posted by: Guest on September-14-2020
0

Capitalize word

String.prototype.toJadenCase = function () {
  return this.split(' ').
    map(w => w[0].toUpperCase() + w.slice(1)).join(' ');
};
Posted by: Guest on January-22-2022

Code answers related to "text to uppercase forst word letter"

Browse Popular Code Answers by Language