View on GitHub

reading-notes

Learning Notes Repo for Code Fellows

Expression, Operator, and Function

An expression evaluates into a single value:

  1. The expression that assigns a value to a variable
  2. The expression that uses 2 or more values to return a single value

The operator creates a single value from one or more values. Types of operators:

Functions let you group a series of statements together to perform a specific task. Tips of using a function:

<==Back