Q:

angular pipe first letter uppercase

{{ value_expression | titlecase }}
2
transform(value:string): string {
  let first = value.substr(0,1).toUpperCase();
  return first + value.substr(1); 
}
  
1

New to Communities?

Join the community