Example
Since we wrap your JavaScript code with an async expression, we recommend always defining return statements and ending inline functions with a semicolon.
{}
function fullName(firstName, lastName){ return `${firstName} ${lastName}`}; return fullName('John', 'Doe');
{ output: 'John Doe' }