Reading-notes

Expressions , Operators and loops

### we talking about operators at the last summary , and they are alot of operators else like :

Expressions

# loops

There are many different kinds of loops, but they all essentially do the same thing: they repeat an action some number of times.

The various loop mechanisms offer different ways to determine the start and end points of the loop. There are various situations that are more easily served by one type of loop over the others.

The statements for loops provided in JavaScript are:

and we will give u an example for “do wile” loop:

In the following example, the do loop iterates at least once and reiterates until i is no longer less than 5

- so we enough here , this was my summary .