javascript (programming language) Archives -

JavaScript programs examples with output

JavaScript programs examples with output Hello Guys, Welcome to our new article in the article you will get JavaScript programs examples with output. Program-1 Write a program to find addition of two number <html> <body> <h1>Program 1</h1> <script> var a=50; var b=10; document.write(“Value of a=”+a); document.write(“<br>Value of b=”+b); document.write(“<br>Addition of a and b=”+c); </script> </body> … Read more