Skip to content

capitalize() function

str の最初の文字を大文字に、残りの文字を小文字に変換します。

Signature:

typescript
function capitalize(str: string): string;

Example

ts
capitalize("fred"); // "Fred"
capitalize("FRED"); // "Fred"
capitalize(""); // ""

Open Source Code

Released under the Apache-2.0 License.