angular pipe to capitalize first letter

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

Also in JavaScript: