JavaScript Practice Questions And Answer

Problem: Write a program to convert temperature from degree Fahrenheit to Celsius.
Solution:
            <html>
             <head>
              <script>
               function FtoC()
              {
                var f = 98
                var c = (f-32)/1.8
                document.write(c)
              }
               </script>
              </head12>
              <body>
              <input type="button" value="Find" onclick="FtoC()"/>
              </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!