reading-notes

Programming with JavaScript

What is control flow?

Control flow is the order in which the code is executed which is affected by the structure fo the code.

What is a JavaScript function?

A function is a portion of code that is designated to perform a particular task.

What does it mean to invoke - or call - a function?

Invoking, or calling, is activating the function so it can perform the code within it.

What are the parenthesis () for when you define a function?

This is an operator that invokes the function.