1<! DOCTYPE html>234<meta charset= "UTF-8" >5<title>Document</title>67<body>8<script type= "Text/javascript" >9 /*write a program that outputs 1 to 100 of these numbers. However, when the number is a multiple of 3, the output "three" substitution number, for a multiple of 5 with "five" instead, both a multiples of 3 and 5 multiples of the output "35." Ten */ One for(i=1;i<=100;i++){ A if(I%3==0 && i%5==0) { -document.write ("35 <br/>"); -}Else if(i%3==0) { thedocument.write ("Three <br/>"); -}Else if(i%5==0) { -document.write ("Five <br/>"); -}Else +document.write (i+ ' <br/> '); - } + A at -</script> - -</body> -Write a program that outputs 1 to 100 of these numbers. However, when the number is a multiple of 3, the output "three" substitution number, for a multiple of 5 with "five" instead, both a multiples of 3 and 5 multiples of the output "35."