Introduction to ES6 functions

Introduction to ES6 functions

Javascript Arrow Functions

Below is a code snippet

const func = () => {
  console.log("This is an arrow function");
};