are arrow functions the only one with implicit returns code example
Example: implicit return arrow function
// Single-lineconst
implicit = (value) => value;
// Multi-lineconst
implicit = (value) => (
value
);
// Single-lineconst
implicit = (value) => value;
// Multi-lineconst
implicit = (value) => (
value
);