Example

Map & Reduce

In many cases I had to filter and modify arrays myself and sometimes join them together to a string.

Input-Field

[{"First name": "Henrik", "Last name": "Foo"}, {"First name": "Moritz", "Last name": "doo"}]

JS-Code-Field

return input.filter( i => i['Last name']).map(i => `${i['First name']} ${i['Last name']}`).join('; ');

Output-Field

{ output: 'Henrik Foo; Moritz doo' }

Make.com Custom JavaScript Map & Reduce Example
?