CodeMasteryLab
Section 2

Functions and Scope

Learn about functions and variable scope

Functions and Scope

Function Declaration

function greet(name) {
  return `Hello, ${name}!`;
}

Arrow Functions

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