JavaScript Example (Program)
Learn Details

Q. What is the follow step of for loop ?

for loop को create करने के लिए 3 step को follow करना पड़ता है

  • सबसे पहले initialize
  • उसके बाद condition check
  • उसके बाद increment / decrement

Note: - for loop में तीनों step को एक ही साथ उसे किया जाता है। इसलिए यह बहुत ही popular है

Syntax :

for(initialize;  condition check; increment/deccrement){

            //your Statement(s);

             increment/decrement

}

Example :

<script>

for(var a= 1; a<=10; a++){

            document.write(a+". "+"Teach Coders <br>")

}

 

</script>

Out Put :

1. Teach Coders
2. Teach Coders
3. Teach Coders
4. Teach Coders
5. Teach Coders
6. Teach Coders
7. Teach Coders
8. Teach Coders
9. Teach Coders
10. Teach Coders