📜  tocapitalize javascript代码示例

📅  最后修改于: 2022-03-11 15:03:14.553000             🧑  作者: Mango

代码示例6
myString = 'the quick green alligator...';
myString.replace(/^\w/, (c) => c.toUpperCase());

myString = '    the quick green alligator...';
myString.trim().replace(/^\w/, (c) => c.toUpperCase());