SlideShare a Scribd company logo
Javascript 3Loops / For / While / Do..while/ break / continue / for .. in
Javascript LoopsIn javascript zijn er 2 soorten loops:For Doorloopt een blok code een vooraf bepaalt aantal maalWhileDoorloopt een blok code net zolang totdat een een conditie op true komt.
Javascript LoopsDe For LoopSyntaxfor (var=startvalue;var<=endvalue;var=var+increment){code die uitgevoerd wordt}
Javascript LoopsDe WhileLoopSyntaxwhile (var<=eindwaarde  {   code die uitgevoerd wordt   }
Javascript LoopsDe Do .. WhileLoopDe do .. while loop is een variant op de while loop. De code wordt eenmaal uitgevoerd en herhaalt de loop tot de conditie op waar staat.Syntaxdo  {  code die uitgevoerd wordt   }while (var<=eindwaard);
Javascript LoopsDe break StatementDe break statement stopt de loop en gaat verder met de code die na de loop komt. (of stopt wanneer er geen code volgt.
Javascript LoopsDe continue StatementDe continue statement stopt de huidige loop en gaat verder de volgende waarde!
Javascript LoopsDe For .. In StatementDe For .. In statement doorloopt een loop van elementen binnen een ‘array’ of de properties van een ‘object’.  Syntaxfor (variable in object)  {   uittevoeren code  }
Javascript Loops
Opdracht !Experimenteren met de code !

More Related Content

PPTX
Les 3 javascript
PPT
For each
PDF
Building a Hyper Energy Efficient Data Center
PDF
Investment strategygroupweeklycalls 7-16-12 external
PPTX
Les 1 html
PPT
Inleiding Moederborden 2003
PDF
Wdreader2
PPTX
Les 2 php prog 1
Les 3 javascript
For each
Building a Hyper Energy Efficient Data Center
Investment strategygroupweeklycalls 7-16-12 external
Les 1 html
Inleiding Moederborden 2003
Wdreader2
Les 2 php prog 1

Viewers also liked (20)

PPTX
Les 1.4 php
PPT
Inleiding Moederborden 2003
PPTX
Les 1.5 php
PPTX
Les 3 php prog 2
PPTX
Les 1 Xml
PPTX
Configuration management
PPTX
Herhaling blok 8
PDF
1.4 p font en h-tags_stylen
PDF
Html les 2.3_responsive_design
KEY
Functional ruby
PPTX
Jc selecting, sorting, ordering
PDF
Effective Multicultural Communications in Social Media
PDF
AZEC2012 - Social Business in the Enterprise
PPTX
Fast-buck Britain
PPTX
Face of Scotland
PPT
Apocalypse In Death Valley Another Dream
PDF
Html les 2.2_positioneren
PDF
Html les 2.1 Forms
PDF
HTML module 1 1.8 terugblik
PDF
1.1 basis
Les 1.4 php
Inleiding Moederborden 2003
Les 1.5 php
Les 3 php prog 2
Les 1 Xml
Configuration management
Herhaling blok 8
1.4 p font en h-tags_stylen
Html les 2.3_responsive_design
Functional ruby
Jc selecting, sorting, ordering
Effective Multicultural Communications in Social Media
AZEC2012 - Social Business in the Enterprise
Fast-buck Britain
Face of Scotland
Apocalypse In Death Valley Another Dream
Html les 2.2_positioneren
Html les 2.1 Forms
HTML module 1 1.8 terugblik
1.1 basis
Ad

Les 3 javascript