I've already gone through some of the related questions & answers, but unfortunately those didn't solve my issue.
In my situation, I'm converting a string into JSON. In the front-end, I have got the values & headers of the converted JSON by using
this.values = JSON.parse(element["record"].replace(/\\/g, ""))
&
this.headers = Object.keys(this.record)
I want to show the headers inside a table as table-header. So, I need sentence case. For example-
Header value- thisIsMyHeader
What I want- This Is My Header
Can anyone please tell a way to add space between each word of the camel case text & make each word's first letter capital in Angular 12 that will actually work without giving me error?
NOTE:- I wouldn't like to use 'lodash'
Thanks in advance :)