Tag: javascript loops

  • JavaScript Loops Made Easy

    In this video we’ll learn about all of the different types of loops in JavaScript. Loops are a way of repeating things in JavaScript. We’ll cover FOR, FOR..IN, FOR..OF, WHILE, DO..WHILE, and the high order array function forEach. I will do my best to make JavaScript loops simple and easy. 📚 My Favorite Web Design…

  • JavaScript tutorial 72 – Print patterns of numbers and stars

    Print patterns of numbers and stars: Displaying stars in rows and columns using Javascript loops: var rows=5; var cols=5; for(var i=1;i<=rows;i++) { for(var j=1;j<=cols;j++) { document.write(” * “); } document.write(“<br/>”); } Output: * * * * * * * * * * * * * * * * * * * * * * *…