How to Capitalize the First Letter of Each Word using JavaScript?

The best way to capitalize the first letter in each word of a sentence written in JavaScript would be through the usage of a regular expression. A regular expression is a pattern that describes or matches a sequence of characters, to perform specific operations. there are many ways to capitalize the first letter of each word in a text. Some solutions place an HTML tag before each word, which would then be displayed inside the browser.

javascript capitalize words

By GrepperGrepper on Jul 22, 2019
//capitalize only the first letter of the string. 
function capitalizeFirstLetter(string) {
    return string.charAt(0).toUpperCase() + string.slice(1);
}
//capitalize all words of a string. 
function capitalizeWords(string) {
    return string.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
};

Add Comment

59

capitalize first letter javascript

By Wrong WeaselWrong Weasel on Jun 22, 2020
function capitalizeFirstLetter(string) {
  return string.charAt(0).toUpperCase() + string.slice(1);
}

console.log(capitalizeFirstLetter('foo bar bag')); // Foo

Source: stackoverflow.com

Add Comment

7

javascript capitalize first letter

By Helpless HorseHelpless Horse on Mar 04, 2020
const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);

Add Comment

30

javascript uppercase first character of each word

By BatmanBatman on Jul 03, 2020
const uppercaseWords = str => str.replace(/^(.)|\s+(.)/g, c => c.toUpperCase());

// Example
uppercaseWords('hello world');      // 'Hello World'

Add Comment

3

javascript capitalize first letter of each word

By AnkurAnkur on May 01, 2020
function titleCase(str) {
   var splitStr = str.toLowerCase().split(' ');
   for (var i = 0; i < splitStr.length; i++) {
       // You do not need to check if i is larger than splitStr length, as your for does that for you
       // Assign it back to the array
       splitStr[i] = splitStr[i].charAt(0).toUpperCase() + splitStr[i].substring(1);     
   }
   // Directly return the joined string
   return splitStr.join(' '); 
}

document.write(titleCase("I'm a little tea pot"));

Source: stackoverflow.com

Add Comment

3

javascript first letter uppercase

By Sergey DragonerSergey Dragoner on Dec 31, 2020
const upperCase = function(names){
    const toLower = names.toLowerCase().split(' ');
    const namesUpper = [];
    for(const wordName of toLower){
        namesUpper.push(wordName[0].toUpperCase() + wordName.slice(1));
    }
    return namesUpper.join(' ');
}

Add Comment

3

The problem with this approach is that it will generate errors on mobile devices and desktop browsers as well, since they don't support the <tag> syntax.

Javascript answers related to "javascript first letter uppercase"

View All Javascript queries

Javascript queries related to "javascript first letter uppercase"

javascript first letter uppercase capitalize first letter of all word typescript react yup password with number string and uppercase javascript remove first character from string Return the first element of the array javascript angular get first element ngfor react useeffect not on first render react useEffect prevent first time how to not execute useEffect when loading the page first time es6 get first and last element of array push at first index typescript passing argument to function handler functional compoent javascript react reactjs javascript is mobile and desktop use javascript library in react node js send javascript javascript queryselectorall math.random javascript javascript onclick href location javascript get last element of array remove attribute javascript Javascript stop setInterval javascript round 2 decimals javascript to integer parse integer javascript javascript convert string to number Javascript write to text file afficher un div qui etait cache en javascript javascript in viewport document ready javascript vanilla how to convert minutes into seconds in javascript how to get all elements with same class in javascript application/x-www-form-urlencoded javascript fetch add 10 seconds to date javascript javascript get random floating number how to remove duplicate array object in javascript Array unique values javascript remove element from array javascript to pascal case javascript javascript multiline string window onload javascript how to check if object is empty javascript document ready javascript math floor javascript null read file javascript javascript check if string is number javascript urlencode json How to get current timestamp in javascript convert milliseconds to minutes and seconds javascript javascript object to json javascript startswith javascript reverse array regex space javascript javascript object entries timestamp to date javascript array length javascript javascript classlist add javascript object destructuring datetime to date javascript create element javascript foreach object javascript javascript redirection how to use javascript to get full file path default in javascript javascript get stack trace javascript show stack trace javascript style an element javascript convert array to object javascript object to array javascript merge objects Javascript merge two objects javascript and operator javascript replace spaces with nbsp window.open javascript auto close javascript sort array of date string.find javascript math.max in javascript javascript iterate through for loop javascript prototype explained javascript background color check online status javascript how to change image source using javascript how to get nth fibonacci javascript how to print a line in javascript javascript add css file add value to array javascript for array javascript javascript template literals javascript round to 2 decimal delete element from list javascript switch statement javascript check if all elements in array are true javascript javascript send post data with ajax generate random number array javascript from principal array add css in javascript set focus on input field javascript limit characters display javascript add an element to an array javascript javascript resize event javascript format price javascript new line javascript mouse up mouse down how to convert an array into an object using javascript change index array javascript javascript get array min and max javascript create array of objects with map sum all elements in array javascript get year javascript copyright draw rectangle on canvas javascript filter javascript array get data attribute javascript javascript if shorthand queryselector javascript generate random ip address javascript javascript date format mm/dd/yyyy hasownproperty javascript convert string to integer javascript addeventlistener javascript multiple functions javascript if not javascript date format dd-mm-yyyy string length JavaScript javascript check undefined arrow function javascript download file javascript javascript event listener html to pdf javascript convert date to timestamp javascript javascript download file for loop inside a for loop javascript get current date javascript yyyy-mm-dd json to array javascript javascript array find iterate over array of objects javascript find a single element in array of objects javascript while javascript javascript addeventlistener javascript loop aray javascript check undefined or null empty string in javascript interactive svg javascript make an object javascript where is select value in javascript event object javascript scrollleft stop how to stop requestanimationframe in javascript javascript add parameter to object javascript check if array is in array javascript math.pow fetch method in javascript check if checkbox is checked javascript javascript change title validate latitude longitude javascript javascript integer length add object in array javascript to index using lodash Javascript pong game how to remove element from array in foreach javascript what is promise in javascript how to append item to an array in foreach javascript javascript add text to textarea overwrite javascript regex not in a set of characters convert pdf to base64 javascript and operator in javascript javascript math ceiling function javascript email validation javascript location.href how to reverse a string in javascript without using reverse method JavaScript Array Methods .reduce() hide automatically show and hide javascript get date format javascript using apis in javascript javascript truthy javascript algorithms how to remove the last element of an array in javascript javascript set color in hex sort object by value javascript 6 ways to modify an array javascript javascript find the longest string in array javascript add to a dictionary functions in arrays javascript find method in javascript javascript find value in array how to replace array element in javascript without mutation javascript for loop return index string immutable javascript javascript array vs object javascript detect touch javascript concatenation else in javascript how to make a file and write code in it javascript JavaScript Syntax how to add 2 numbers together in javascript Hoisting in JavaScript MDN javascript document stripe javascript checkout how to declare variables javascript javascript dynamic arrays what indexof in javascript what is linter javascript JavaScript Sorting Arrays flat function javascript

Browse Other Code Languages

CodeProZone