Answers for "how to add title case pipe to any type variable"

1

angular pipe to capitalize first letter

transform(value:string): string {
  let first = value.substr(0,1).toUpperCase();
  return first + value.substr(1); 
}
Posted by: Guest on July-10-2020

Code answers related to "how to add title case pipe to any type variable"

Code answers related to "Javascript"

Browse Popular Code Answers by Language