Convert camel case to sentence case in javascript
问题 I found myself needing to do camel case to sentence case string conversion with sane acronym support, a google search for ideas led me to the following SO post: Convert camelCaseText to Sentence Case Text Which is actually asking about title case not sentence case so I came up with the following solution which maybe others will find helpful or can offer improvements to, it is using ES6 which is acceptable for me and can easily be polyfilled if there's some horrible IE requirement. 回答1: The