DekGenius.com
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(); });
};
capitalize first letter javascript
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
console.log(capitalizeFirstLetter('foo bar bag')); // Foo
javascript capitalize first letter
const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);
javascript string first letter lowercase
// for lowercase on first letter
let s = "This is my string"
let lowerCaseFirst = s.charAt(0).toLowerCase() + s.slice(1)
return first letter of string javascript in uppercase
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
console.log(capitalizeFirstLetter('foo')); // Foo
js first letter to uppercase
function capitalizeFirstLetter(name) {
return name.replace(/^./, name[0].toUpperCase())
}
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)
js first character uppercase
string.charAt(0).toUpperCase() + string.slice(1);
js capitalize first letter
// this will only capitalize the first word
var name = prompt("What is your name");
firstLetterUpper = name.slice(0,1).toUpperCase();
alert("Hello " + firstLetterUpper + name.slice(1, name.length).toLowerCase());
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);
how to change the first Letter to uppercase js
let name = 'john';
name = name.charAt(0).toUpperCase() + name.slice(1); //slice(index) return string from index to index
console.log(name); // John
how to capitalize first letter in javascript
function capitalize(word) {
return word.charAt(0).toUpperCase() + word.toLocaleLowerCase().substring(1)
}
capitalize("bob");
Javascript Capitalize First Letter
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
console.log(capitalizeFirstLetter('foo')); // Foo
Run code snippet
Capitalize the first letter of string using JavaScript
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
first letter uppercase js
const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);
js caps first letter
// Oneliner, get first character, replace it with first character in upper case
string.replace(string[0], string[0].toUpperCase())
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
javascript capitalize first letter
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
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);
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());
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();
}
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"));
first letter string uppercase javascript
String.prototype.capitalize = function() {
return this.charAt(0).toUpperCase() + this.slice(1);
}
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(' ');
}
Captalize first letter javascript
function ucfirst(str,force){
str=force ? str.toLowerCase() : str;
return str.replace(/()([a-zA-Z])/,
function(firstLetter){
return firstLetter.toUpperCase();
});
}
JavaScript Capitalize First Letter
const capitalize = ([first, ...rest]) => first.toUpperCase() + rest.join("").toLowerCase();
first letter of string in uppercase using javascript
function capFirst(str) {
return str[0].toUpperCase() + str.slice(1);
}
console.log(capFirst('hello'));
//output
//Hello
© 2022 Copyright:
DekGenius.com