Programming with JavaScript

My reading journal for Code Fellows

Programming with JavaScript

Control Flow

JS Functions

JS Function Syntax

Function Invocation

Function Retun

If the function was invoked from a statement, JS will “return” to execute the code after the invoking statement.

Functions often compute a return value. The return value is “returned” back to the “caller”

Why Functions

The () Operator invokes the Function

Functions used as Variables

Local Variables