Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Convert comma seperated values into object specified method

Hi I am trying to achieve following behaviors with javascript

let fieldsArray = ['clientMap', 0, 'legalEntityNumber']

somehow I want to get convert above data into following way

['clientMap'][0]['legalEntityNumber']

I tried with fieldsArray.join('[]') but its not working as expected. please help. Thanks

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

If im understanding you correctly (and you want a string i.e. "[clientMap][0][legalEntityNumber]") this would be how to do that…

let fieldsArrayString = ['clientMap', 0, 'legalEntityNumber'].map(item=>`[${item}]`).join('');

or

let fieldsArrayString = ['clientMap', 0, 'legalEntityNumber'].reduce((acc, cur) => `${acc}[${cur}]`, '');
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading