capitalise first letter js
//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(); });
};const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);const name = 'flavio'
const nameCapitalized = name.charAt(0).toUpperCase() + name.slice(1)
const string = "tHIS STRING'S CAPITALISATION WILL BE FIXED."
const string = string.charAt(0).toUpperCase() + string.slice(1)
Also in JavaScript:
- javascript substring vs substr
- greater than x but less than y es6
- jquery preventdefault
- how to delete element in list javascript
- screen.render is not a function in node
- js format urcurency
- client side redirect javascript
- laravel json response
- javascript localStorage clear items
- javascript get clock time in auto counter up
- react grid
- update table remove a key from json object mysql
- get platform node
- flat function javascript
- integer to array javascript
- if string have any digits javascript
- less than equal to in javascript
- substring javascript
- javascript enumerate
- disable a button react
- array sort js
- appendchild element once if element presense in js
- javascript object array sum of values in object
- how to add array data on state react