webmanz Posted April 15, 2018 Report Share Posted April 15, 2018 Are there only 4 types of loops in js? Are there more? while, do/while, for, for/in Link to comment Share on other sites More sharing options...
administrator Posted April 15, 2018 Report Share Posted April 15, 2018 Hi, Just do a search for JavaScript loops. Stef Link to comment Share on other sites More sharing options...
webmanz Posted April 16, 2018 Author Report Share Posted April 16, 2018 (edited) 10 hours ago, administrator said: Hi, Just do a search for JavaScript loops. Stef Before posting I looked at w3schools found 4 same loops, I just thought there might be more, so for now I will conclude that's all the loops there is in JS. Edited April 16, 2018 by webmanz 1 Link to comment Share on other sites More sharing options...
martinsmith Posted June 22, 2020 Report Share Posted June 22, 2020 JavaScript now supports five different types of loops while loops through a block of code as long as the condition specified evaluates to true. do while loops through a block of code 1 Link to comment Share on other sites More sharing options...
Recommended Posts