Arrow functions can behave very similar to classic functions in that you may explicitly return a value from them using the return
keyword; simply wrap your function's body in curly braces, and return a value:
const foo = x => {
return x + 1;
}
foo(1); // -> 2