<html>
<head>
<title>JS Projects- Loops </title>
<script>
let i=0;
while(i <= 10){
document.write(i + "<br>");
i++;
}
</script>
</head>
<body>
</body>
</html>