a library to speed up the development of Fivem scripts and frameworks
fivem-ts - Documentation v0.7.5 • Docs
fivem-ts - Documentation v0.7.5 / Shared / capitalizeFirstLetter
capitalizeFirstLetter(
input
):string
Capitalizes the first letter of a string.
• input: string
The string to capitalize the first letter of.
string
The string with its first letter capitalized.
const result = capitalizeFirstLetter("hello");
console.log(result); // "Hello"