View on GitHub

reading-notes

The Summury

Table of Content

  1. Operators
  2. Loops

Operators

JavaScript has the following types of operators. This section describes the operators and contains information about operator precedence.

Loops

Loops offer a quick and easy way to do something repeatedly. This chapter of the JavaScript Guide introduces the different iteration statements available to JavaScript.

A for statement looks as follows:

for ([initialExpression]; [conditionExpression]; [incrementExpression])

If the condition becomes false, statement within the loop stops executing and control passes to the statement following the loop.