Answers for "javascript function that accepts a string as a parameter and converts the first letter of each word of the string in upper case."

4

javascript uppercase first character of each word

const uppercaseWords = str => str.replace(/^(.)|\s+(.)/g, c => c.toUpperCase());

// Example
uppercaseWords('hello world');      // 'Hello World'
Posted by: Guest on July-03-2020
2

javascript uppercase first letter of each word

const str = 'captain picard';

function capitalize(str) {
  return str.charAt(0).toUpperCase() + str.slice(1);
}

const caps = str.split(' ').map(capitalize).join(' ');
caps; // 'Captain Picard'
Posted by: Guest on October-27-2020

Code answers related to "javascript function that accepts a string as a parameter and converts the first letter of each word of the string in upper case."

Code answers related to "Javascript"

Browse Popular Code Answers by Language