Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

js first letter uppercase

//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(); });
};
Comment

javascript uppercase first character of each word

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

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

capitalize first letter of every word javascript

text.replace(/(^w|sw)/g, m => m.toUpperCase());
// Explanation:
// 
// ^w : first character of the string
// | : or
// sw : first character after whitespace
// (^w|sw) Capture the pattern.
// g Flag: Match all occurrences.

// Example usage:

// Create a reusable function:
const toTitleCase = str => str.replace(/(^w|sw)/g, m => m.toUpperCase());

// Call the function:
const myStringInTitleCase = toTitleCase(myString);

Comment

javascript uppercase first letter of each word

const toTitleCase = (phrase) => {
  return phrase
    .toLowerCase()
    .split(' ')
    .map(word => word.charAt(0).toUpperCase() + word.slice(1))
    .join(' ');
};

let result = toTitleCase('maRy hAd a lIttLe LaMb');
console.log(result);
Comment

javascript capitalize first letter

const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);
Comment

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'
Comment

capitalize first letter of all word typescript

//Altered, "capitalize all words of a string" (javascript by Grepper on Jul 22 2019) answer to compatible with TypeScript

var myString = 'abcd abcd';

capitalizeWords(text){
  return text.replace(/(?:^|s)S/g,(res)=>{ return res.toUpperCase();})
};

console.log(capitalizeWords(myString));

//result = "Abcd Abcd" 

Comment

uppercase first letter of each word javascript

const str = 'FIDEURAM VITA';

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

const caps = str.split(' ').map(capitalize).join(' ');
caps; // 'Fideuram Vita'
Comment

return first letter of string javascript in uppercase

function capitalizeFirstLetter(string) {
  return string.charAt(0).toUpperCase() + string.slice(1);
}

console.log(capitalizeFirstLetter('foo')); // Foo
Comment

js first letter to uppercase

function capitalizeFirstLetter(name) {
    return name.replace(/^./, name[0].toUpperCase())
}
Comment

javascript capitalize first letter of each word

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"));
Comment

how to capitalize first letter javascript

const names = ["alice", "bob", "charlie", "danielle"]
// -->        ["Alice", "Bob", "Charlie", "Danielle"]

//Just use some anonymous function and iterate through each of the elements in the array
//and take string as another array
let namescap = names.map((x)=>{
    return x[0].toUpperCase()+x.slice(1)
    
})
console.log(namescap)
Comment

first letter of each word in a sentence to uppercase javascript

function capitalizeTheFirstLetterOfEachWord(words) {
   var separateWord = words.toLowerCase().split(' ');
   for (var i = 0; i < separateWord.length; i++) {
      separateWord[i] = separateWord[i].charAt(0).toUpperCase() +
      separateWord[i].substring(1);
   }
   return separateWord.join(' ');
}
console.log(capitalizeTheFirstLetterOfEachWord("my name is john"));
Comment

js first character uppercase

string.charAt(0).toUpperCase() + string.slice(1);
Comment

javaSript string first words to upper case

function titleCase(str) {
  return str.toLowerCase().replace(/(^|s)S/g, L => L.toUpperCase());
}
Comment

capitalize first letter of string javascript

let val = '  this is test ';
val = val.trim();
val = val.charAt(0).toUpperCase() + val.slice(1);
console.log("Value => ", val);
Comment

uppercase first letter of each word javascript


//Without function
const str = 'FIDEURAM VITA';
const caps = str.split(' ').map(str =>str.charAt(0).toUpperCase() + str.slice(1).toLowerCase()).join(' ')
caps; // 'Fideuram Vita'
Comment

how to capitalize first letter in javascript

function capitalize(word) {
    return word.charAt(0).toUpperCase() + word.toLocaleLowerCase().substring(1)
}
capitalize("bob");
Comment

Javascript Capitalize First Letter

function capitalizeFirstLetter(string) {
  return string.charAt(0).toUpperCase() + string.slice(1);
}

console.log(capitalizeFirstLetter('foo')); // Foo
 Run code snippet
Comment

js capitalize first letter of each word

const titleCase = title => title
    .split(/ /g).map(word =>
        `${word.substring(0,1).toUpperCase()}${word.substring(1)}`)
    .join(" ");
Comment

Capitalize the first letter of string using JavaScript

function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
Comment

first letter uppercase js

const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);
Comment

How to capitalize the first letter of a word in JavaScript

const word = "freecodecamp"

const capitalized =
  word.charAt(0).toUpperCase()
  + word.slice(1)
  
// Freecodecamp
// F is capitalized
Comment

javascript capitalize first letter

function capitalizeFirstLetter(string) {
     return string.charAt(0).toUpperCase() + string.slice(1);
}

Comment

uppercase first letter javascript

const names = ["alice", "bob", "charlie", "danielle"];

const namesCap = names.map((name) => {
  return `${name[0].toUpperCase()}${name.slice(1)}`;
});

console.log(namesCap);
Comment

how to make first letter uppercase in javascript

var name = prompt("What is your name");
firstLetterUpper = name.slice(0,1).toUpperCase();

alert("Hello " + firstLetterUpper + name.slice(1, name.length).toLowerCase());
Comment

How do I make the first letter of a string uppercase in JavaScript?

//1 using OOP Approach 
Object.defineProperty(String.prototype, 'capitalize', {
  value: function() {
      return this.charAt(0).toUpperCase()+ this.slice(1).toLowerCase();
  },
  enumerable: false
});

function titleCase(str) {
  return str.match(/wS*/gi).map(name => name.capitalize()).join(' ');
}
//-------------------------------------------------------------------
//2 using a simple Function 
function titleCase(str) {
  return str.match(/wS*/gi).map(name => capitalize(name)).join(' ');
}
function capitalize(string) {
  return string.charAt(0).toUpperCase() + string.slice(1).toLowerCase();
}
Comment

uppercase first letter js

function ucwords (str) {
  return (str + '').replace(/^([a-z])|s+([a-z])/g, function ($1) {
    return $1.toUpperCase();
  });
}

console.log(ucwords("hello world"));
Comment

first letter string uppercase javascript

String.prototype.capitalize = function() {
    return this.charAt(0).toUpperCase() + this.slice(1);
}
Comment

javascript first letter uppercase

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(' ');
}
Comment

javascript capitalize first letter of each word

// includeAllCaps is optional and defaults to false
// if includeAllCaps is set to true, it will Title Case words with all capital letters

// includeMinorWords is optional and defaults to false
// if includeMinorWords is set to true, it will minor words in the middle of the string

function toTitleCase(str, includeAllCaps, includeMinorWords) {
    includeAllCaps = (includeAllCaps ? (includeAllCaps == true ? true : false) : false);
    includeMinorWords = (includeMinorWords ? (includeMinorWords == true ? true : false) : false);
    var i, j, lowers;
    str = str.replace(/([^W_]+[^s-]*) */g, function (txt) {
        if (!/[a-z]/.test(txt) && /[A-Z]/.test(txt) && !includeAllCaps) {
            return txt;
        } else {
            return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
        }
    });

    if (includeMinorWords) {
        return str;
    } else {
        // Certain minor words should be left lowercase unless 
        // they are the first or last words in the string
        lowers = ['A', 'An', 'The', 'And', 'But', 'Or', 'For', 'Nor', 'As', 'At',
            'By', 'For', 'From', 'In', 'Into', 'Near', 'Of', 'On', 'Onto', 'To', 'With'
        ];
        for (i = 0, j = lowers.length; i < j; i++)
            str = str.replace(new RegExp('s' + lowers[i] + 's', 'g'),
                function (txt) {
                    return txt.toLowerCase();
                });

        return str;
    }
}

toTitleCase("FOO bar"); // FOO Bar
toTitleCase("FOO bar", true); // Foo Bar
toTitleCase("a foo bar"); // A Foo Bar
toTitleCase("a foo in bar"); // A Foo in Bar
toTitleCase("foo of bar"); // Foo of Bar
toTitleCase("foo of bar", false, true); // Foo Of Bar
Comment

JavaScript Capitalize First Letter

 const capitalize = ([first, ...rest]) => first.toUpperCase() + rest.join("").toLowerCase(); 
Comment

first letter of string in uppercase using javascript

function capFirst(str) {
     return str[0].toUpperCase() + str.slice(1);
 }

console.log(capFirst('hello'));
//output 
//Hello
Comment

Captalize all words first letter javascript

function ucwords(str,force){
  str=force ? str.toLowerCase() : str;  
  return str.replace(/()([a-zA-Z])/g,
           function(firstLetter){
              return   firstLetter.toUpperCase();
           });
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: vue get height of element ref 
Javascript :: chart.js change font color 
Javascript :: get parent element javascript 
Javascript :: next js update 
Javascript :: react native cli run ios 
Javascript :: javascript compare 2 thresholds color 
Javascript :: instance use in_array in javascript 
Javascript :: 16/27.5 
Javascript :: comment p5js 
Javascript :: react js set default route 
Javascript :: how to create hyperlinks discord.js 
Javascript :: react native rename package name 
Javascript :: unordered list in react native 
Javascript :: hasOwnProperty with more than one property 
Javascript :: rotate a div using javascript 
Javascript :: map object es6 
Javascript :: gdscript emit signal 
Javascript :: use state value change right after setState or state update 
Javascript :: node mailer office 365 
Javascript :: increase font size in jsx 
Javascript :: jquery clone and append 
Javascript :: how to get session javascript ws3schools 
Javascript :: nodejs write raw buffer to file 
Javascript :: document.getElementById visual basic 
Javascript :: how to clamp a value by modulus 
Javascript :: jquery serialize form to json 
Javascript :: javascript date to string 
Javascript :: chack var exist for skip error on javascript 
Javascript :: select element by data attribute 
Javascript :: js reverse str case 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =