Capitalize a String

A utility function to capitalize the first letter of a string.

TypeScript
david

13 weeks ago

function capitalize(str: string): string {
  if (!str) return str;
  return str.charAt(0).toUpperCase() + str.slice(1);
}
0