webmanz Posted April 15, 2018 Report Posted April 15, 2018 Are there only 4 types of loops in js? Are there more? while, do/while, for, for/in
administrator Posted April 15, 2018 Report Posted April 15, 2018 Hi, Just do a search for JavaScript loops. Stef
webmanz Posted April 16, 2018 Author Report 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
martinsmith Posted June 22, 2020 Report 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
Recommended Posts