What is a do while loop? Demonstrate with an example? Example: while loop var i=1; while(i<=10){ document.write(i + "<br>"); i++;}