e.g. AS-IS ```javascript /** wrong */ const foo = () => 42, bar = () => { throw Error }; ``` TO-BE ```javascript const foo = () => 42, /** correct */ bar = () => { throw Error }; ```
e.g.
AS-IS
TO-BE