Read: 08 - Operators and Loops

Previously we talked about Operators and kinds of it and we also talked about fucntion and how to declaration a one Now we we talked about loops and Operators .

Let’s Start

Operators

*EVALUATING CONDITION

We used to evaluate two value or condition and the result will be True or False .

== Is Equal To
!= Is Not Equal To
=== Strict Equal To
!== Strict Not Equal To

we use to compaire the result of more the one comparison operator

&& Logical AND    
      Logical OR
! Logical Not    

operators

Loops

Loop it check the condition samilier to If Condition and if it true it will be run the code samilir to function

Loops Types

and you can see the Differnce in the image

loops

Loop Component

loopsHeader

Loop Example

var text = "";
var i;
for (i = 0; i < 5; i++) {
  text += "The number is " + i + "<br>";
}
document.getElementById("demo").innerHTML = text;

Contact Info :

Please Feel Free To Contact Me When You Need help ^_^