Lesson 1: Deep Dive

And here is an arrow function in JavaScript:

const greet = (name) => {
  console.log(`Hello, ${name}!`);
}

Resources