Having trouble trying to capitalize the first letter after an underscore in a string using Angular 8. Can anyone help me find a solution?
app.component.ts:
let content="power_managment 0vol";
alert(content.split( ).[0]);
// desired output: "powerManagment"