JavaScript Practice Questions And Answer

Problem: Write a program to convert days into years, weeks and months.
Solution:
<html>
 <head>
  <script>
   function findYMW()
   {
    var inputBox = document.getElementById("input1")
    var days = parseInt(inputBox.value) //487
    var year = days/365
    var month = days/30
    var week = days/7
    document.write(year + "<br>")
    document.write(month + "<br>")
    document.write(week + "<br>")   
   }
  </script>
    </head>
      <body>
       <input type="text" placeholder="Days" id="input1" /> <br>
       <input type="button" value="Go" onclick="findYMW()" />
      </body>
</html>

Contact Us

Our Address

Office no.- 401,Shekhar Central Building ,Palasiya, Pin-code:452001, Indore

Email Us

contact@codebetter.in

Call Us

+91 88230 75444, +91 99939 28766

Loading
Your message has been sent. Thank you!