🌱 5 Differences Between Arrow and Regular Functions

Source

this, constructors, args, implicit return, methods all differ between

const greet = function (who) {
  return `Hello, ${who}`
}

and

const greet = (who) => {
  return `Hello, ${who}!`
}
Made by Brandon . If you find this project useful you can donate.