421. JavaScript Arrow Function Return Rules (jaketrent.com)
Arrow functions treat return values in a couple ways.Normally Returns are RequiredThere has traditionally been no implicit return in JavaScript functions. If you write a function using the function keyword, this remains true:function needsReturn() { 'awesome' } needsReturn() // returns undefinedFunc...