JavaScript Practice Questions And Answer

Problem: Write a program for swapping of two integer variables using third variable.
Solution:
            <html>
             <head>
              <script>
                function swap()
                {
                  var a = 24
                  var b = 56
                  var t = 0
                  t = a
                  a = b
                  b = t
                  document.write(a + " " + b)
                }
                 </script>
               </head>
                 <body>
                  <input type="button" value="GO" onclick="swap()" />
                 </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!