<html>
<head>
<title>JS Projects- Loops </title>
<script>
let name = prompt("Enter your name.");
for (var i=1; i<=3; i++){
document.write(name + "<br>");
}
</script>
</head>
<body>
</body>
</html>