I have an array of strings:
['braid', 'write', 'pence', 'schmo']
I would like some method to transform this into this:
['bwps', 'rrec', 'ainh', 'itcm', 'deeo']
I.e. I want the new strings to be the combination of all 1st letters, 2nd letters, 3rd letters, etc. of the old strings.
Plain Vanilla JS is preferred.