Lesson 7: Deep Dive

This is a short lesson description. It gets straight to the point.

And here is an arrow function in JavaScript:

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