Guest User

Untitled

a guest
May 20th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. while (index < images.length) {
  2. if (cond1) {
  3. index++;
  4. // Do work 1
  5. }
  6. else {
  7. // Do work 2
  8. }
  9. }
  10.  
  11. images.forEach(myFunc);
  12.  
  13. for (const img of images) {
  14. while (!cond1) {
  15. // do work 2
  16. }
  17. // do work 1
  18. }
Add Comment
Please, Sign In to add comment