Read this:
https://jaketrent.com/post/javascript-arrow-function-return-rules/
For me it’s about the consistency because althoughconst implicit = () => ‘awesome’
returns awesome, if I want to put several statement lines in the arrow function I need curly braces and I need to explicitly put return somewhere, so even for one line I would do () => {return ‘blah’;}