第一個字母大寫,後面都小寫。
🔰 JS ⟩ Types ⟩ String ⟩ methods
// ⭐️ string.capitalize() // 第一個字母大寫 String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1).toLowerCase(); };
String ⟩
.kebabToCamelCase()
.toDatasetPropName()
Custom Attributes - dataset
⭐️ Fav
How do I make the first letter of a string uppercase in JavaScript?
Last updated 2 years ago