Lesson 20: Deep Dive

Resources

And here is an arrow function in JavaScript:

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