181. Why Use the function Keyword in JavaScript (jaketrent.com)
Here are my reasons to use the function keyword when declaring functions in JS.Using the function keyword in JavaScript has gone out of vogue since the advent of arrow functions (ie () => {}) in es2015. To declare a function with the function keyword, you write:function myFunction() {}And with an ar...