### we talking about operators at the last summary , and they are alot of operators else like :
The comma operator (,) evaluates both of its operands and returns the value of the last operand. This operator is primarily used inside a for loop, to allow multiple variables to be updated each time through the loop. It is regarded bad style to use it elsewhere, when it is not necessary. Often two separate statements can and should be used instead.
A unary operation is an operation with only one operand like :
Basic keywords and general expressions in JavaScript , example :
this: Use the this keyword to refer to the current object. In general, this refers to the calling object in a method.
** Left ** values are the destination of an assignment like :
# loops
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.
In the following example, the do loop iterates at least once and reiterates until i is no longer less than 5