top of page
Input:
[{"First name": "Henrik", "Last name": "Foo"}, {"First name": "Moritz", "Last name": "doo"}]
JS-Code:
return input.filter( i => i['Last name']).map(i => `${i['First name']} ${i['Last name']}`).join('; ');
Output:
{ output: 'Henrik Foo; Moritz doo' }

bottom of page