Javascript Loops Part-1
Code Github: https://github.com/rezaldyabidin266/Javascript_Code_Snippet/tree/gh-pages Code Snippet Javascript Loops Part 1 Index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Js Loops</title> <style> * { font-family: monospace; } </style> </head> <body> <!-- For Loops --> <h2>For Loops</h2> <h3>for (let i = 1; i <= 5; i++) { }; => (1 2 3 4 5)</h3> <button id="btnForLoop">Run For Loop</button> <p id="forLoop"></p> <!-- While Loops --> <h2>While Loops</h2> <h3>let i = 6; while(i <= 10){ i++ }; => (6,7,8,9,10)...