capitalizeFirstLetters

Converts the first character of each word in a string to uppercase and the rest to lowercase.

let myString = "i love sniper.js";

mystring.capitalizeFirstLetters() // I Love Sniper.js

Last updated