w3resource

JavaScript: Capitalize the first letter of every word in a string

JavaScript fundamental (ES6 Syntax): Exercise-264 with Solution

Write a JavaScript program to capitalize the first letter of every word in a string.

  • Use String.prototype.replace() to match the first character of each word and String.prototype.toUpperCase() to capitalize it.

Sample Solution:

JavaScript Code:

// Define a function 'capitalizeEveryWord' to capitalize the first letter of each word in a string
const capitalizeEveryWord = str =>
  // Use regular expression to match the first letter of each word (\b denotes word boundary)
  // and replace it with its uppercase equivalent
  str.replace(/\b[a-z]/g, char => char.toUpperCase());

// Test the function with a sample string
console.log(capitalizeEveryWord('hello world!')); // Output: "Hello World!"

Output:

Hello World!

Visual Presentation:

JavaScript Fundamental: Capitalize the first letter of every word in a string.

Flowchart:

flowchart: Capitalize the first letter of every word in a string.

Live Demo:

See the Pen javascript-basic-exercise-264-1 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program to capitalize the first letter of a string.
Next: Write a JavaScript program to chunk an array into smaller arrays of a specified size.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/javascript-exercises/fundamental/javascript-fundamental-exercise-264.php