Example

Complex JavaScript Code & Inline Functions

Since we wrap your JavaScript code with an async expression, we recommend always defining return statements and ending inline functions with a semicolon.

Input-Field

{}

JS-Code-Field

function fullName(firstName, lastName){ return `${firstName} ${lastName}`}; return fullName('John', 'Doe');

Output-Field

{ output: 'John Doe' }

Make.com Custom JavaScript UUID Example
?