Skip to content

Instantly share code, notes, and snippets.

@afrijaldz
Created January 11, 2022 07:54
Show Gist options
  • Save afrijaldz/5257c34f220c961b58f80e949f68bdd3 to your computer and use it in GitHub Desktop.
Save afrijaldz/5257c34f220c961b58f80e949f68bdd3 to your computer and use it in GitHub Desktop.
export const capitalizeFirstChar = (char) => {
const result = char
.split(" ")
.map((c) => {
const first =
c.slice(0, 1) === "x" ? c.slice(0, 1) : c.slice(0, 1).toUpperCase();
const leas = c.slice(1);
return `${first}${leas}`;
})
.join(" ");
return result;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment