UP | HOME

Expression And Statement

1. Expression

Something which evaluates to a value. Example:

  1 + 2/x

2. Statement

A line of code which does something. Example:

  a = 1 + a;
  return 10;

3. Reference