07-17-2021 04:39 AM
Hello Experts,
for eg. if i have 50 columns and wanted to add some prefix to each column value then without mapping individual column in mapper how can i do it?
Regards,
Ajay
07-17-2021 05:38 AM
Hi Ajay,
You can always use the object function mapKeys…
example: $.mapKeys((val,key)=> ‘MyStaticPrefix_’.concat(key))
Thanks