I am new to programming using JavaScript. How do I repeat a string value retrieved from an <input type="text"> element value, repeat the string by the number retrieved from a sibling <input> element, then set the .innerHTML of a <div> element to the resulting repeated string using JavaScript? I have tried the below approach, which did not return expected result. What am I doing wrong at my current attempt? Is there a simpler way to achieve the expected result?
 function repeatWord(str, num) {
        num = Number(num);
        var result = '';
        while (true) {
            if (num & 1) { // (1)
                result += str;
            }
            num >>>= 1; // (2)
            if (num <= 0) break;
            str += str;
        }
        return result;
    }
</script><html>
<head>
<title></title>
 
<style type="text/css">
body {
 background-color: #D3D3D3;
 font-family: arial;
 text-align: right;
 color: #008B8B;
}
#contentwrap {
 border: 8px #800000 solid;
 padding: 20px;
 width: 600px;
 border-radius: 25px;
 text-align: right;
 background: white;
 margin: 40px auto 0px auto; 
}
#formwrap {
 text-align: center;
 margin: 0px 0px 60px 0px;
 min-height: 300px;
}
#title {
 font-size: 2.2em;
 border-bottom: 7px #008B8B double;
 padding: 10px 0px 10px 0px;
 color: #008B8B;
 text-align: center;
}
#formtext {
 text-align: center;
 margin-top: 5px;
}
.formfield {
 text-align: center;
 margin: 5px 20px 10px 20px;
}
#button {
 border-radius: 20px;
}
#results {
 font-size: 1em;
}
</style>
</head>
<body>
<div id="contentwrap">
 <div id="title">Fun with Loops</div> <br />
 
 <div id="formwrap">
  <form>
 
   <div id="formtext">Enter any word</div>
   <input type="text" id="word" class="formfield" size="20" /> <br />
   
   <div id="formtext">Enter number of times to repeat word</div>
   <input type="text" id="repeatnum" class="formfield" size="20" /> <br />
 
   <input type="button" value="Show Output" id="button" onClick="repeatWord()" />
  </form>
 
  <div id="results"></div>
 </div>
</div>
</body>
</html><html>
<head>
<title></title>
<script type="text/javascript">
 function repeatWord(str, num) {
        num = Number(num);
        var result = '';
        while (true) {
            if (num & 1) { // (1)
                result += str;
            }
            num >>>= 1; // (2)
            if (num <= 0) break;
            str += str;
        }
        return result;
    }
</script>
<style type="text/css">
body {
 background-color: #D3D3D3;
 font-family: arial;
 text-align: right;
 color: #008B8B;
}
#contentwrap {
 border: 8px #800000 solid;
 padding: 20px;
 width: 600px;
 border-radius: 25px;
 text-align: right;
 background: white;
 margin: 40px auto 0px auto; 
}
#formwrap {
 text-align: center;
 margin: 0px 0px 60px 0px;
 min-height: 300px;
}
#title {
 font-size: 2.2em;
 border-bottom: 7px #008B8B double;
 padding: 10px 0px 10px 0px;
 color: #008B8B;
 text-align: center;
}
#formtext {
 text-align: center;
 margin-top: 5px;
}
.formfield {
 text-align: center;
 margin: 5px 20px 10px 20px;
}
#button {
 border-radius: 20px;
}
#results {
 font-size: 1em;
}
</style>
</head>
<body>
<div id="contentwrap">
 <div id="title">Fun with Loops</div> <br />
 
 <div id="formwrap">
  <form>
 
   <div id="formtext">Enter any word</div>
   <input type="text" id="word" class="formfield" size="20" /> <br />
   
   <div id="formtext">Enter number of times to repeat word</div>
   <input type="text" id="repeatnum" class="formfield" size="20" /> <br />
 
   <input type="button" value="Show Output" id="button" onClick="repeatWord()" />
  </form>
 
  <div id="results"></div>
 </div>
</div>
</body>
</html> 
     
    