Don’t forget to name the expression - anonymous functions can make it harder to locate the problem in an Error's call stack. // bad const foo = function () { }; // bad function foo() { } // good const foo = function bar() { };...