JavaScript高级---do-while

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>do-while</title>
  </head>
  <body>
    <script>
      function star(row = 5) {
        let start = 0;
        do {
          let n = 0;
          do {
            document.write("*");
          } while (++n <= start);
          document.write(`<br>`);
        } while (++start <= row);
      }
      star(20)
    </script>
  </body>
</html>
发布了83 篇原创文章 · 获赞 39 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/itwangyang520/article/details/104211461