Lesson Overview
In this lesson, you will learn about functions in JavaScript, how to define them, and how to call them.
Graphical Preview
Code Example
function greet(name) {
return "Hello, " + name + "!";
}
console.log(greet("World"));
In this lesson, you will learn about functions in JavaScript, how to define them, and how to call them.
function greet(name) {
return "Hello, " + name + "!";
}
console.log(greet("World"));