Template

Title


Where to put ';'s

Semicolons belong after every assignment statement (or function call)

Semicolons belong after every assignment statement (or function call)

Semicolons belong after every assignment statement (or function call)

Where to NOT to put ';'s

Semicolons do not belong any of the following places:

  1. After if statements
  2. After while statements
  3. After the function declaration statement
  4. After the end keyword

Back to Topics List