JavaScript Do while loop

PHOTO EMBED

Tue Apr 13 2021 13:43:34 GMT+0000 (Coordinated Universal Time)

Saved by @pradeeproy460 #html #javascript

<! DOCKTYPE html>
<!--Take Input From the user and make a loop when the number is <10-->
<html>
    <head>
        <title>do_while loop example2</title>
    </head>
    <body>
        <center>
            <h3>
                DO_WHILE LOOP
            </h3>
        </center>
        <script>
            var a=10;
            var num = prompt("Enter The highest Range Of the number");
            do
            {
                document.write("Your value is "+a+"<br>");
                a=a+1;
            }
            while(a<=num)
        </script>
    </body>
</html>
content_copyCOPY