Dynamically Swapping Images with JavaScript
In this article you will learn the numbers Swapping in JavaScript and create a JavaScript program.
Image Swapping in JavaScript:- In JavaScript, Numbers Swapping means interchange the numbers to each other . We take two numbers first is (a=10) and second is (b=20). After the swapping the number is change to each other . Such as : a=20 and b=10.
The example of Swapping the numbers in JavaScript:-
| <html> <head> <script language="javascript"> function showAlert() { var a,b,c; a=10; b=20; document.write("Without Swapping"); document.write("a="+a); document.write("b="+b); c=a; a=b; b=c; document.write("After swpping"); document.write("a="+a); document.write("a="+a); } </script> </head> <body> <script language="javascript"> showAlert(); </script> </body> </html> |
Output:- Without Swapping a=10
b=20
After Swapping a=20 b=10
Tutorials
- JavaScript method doScroll()
- Popup Window Example in JavaScript
- JavaScript method deleteRow()
- JavaScript Variables and Data types
- Java Script Code of Calendar and Date Picker or Popup Calendar
- JavaScript - JavaScript Tutorial
- Looping In Java Script
- What is JavaScript? - Definition
- Conditional Examples(if - else- switch case) in JavaScript
- Classes-Objects in JavaScript
- String Number Operations in JavaScript
- Conditions In Java Script
- JavaScript - JavaScript Tutorial
- JavaScript Object Oriented Feature
- Form Validation using Regular Expressions is JavaScript
- Navigation with Combo box and Java Script
- Simple Calculator Application In Java Script
- JavaScript Combo Box Validation
- JavaScript createPopup method
- JavaScript appendChild method
- JavaScript add method
- JavaScript addImport example
- JavaScript appendData method
- JavaScript applyElement method Example
- JavaScript blink method
- JavaScript bold method
- JavaScript clear method
- JavaScript clearTimeOut method
- JavaScript click method
- JavaScript cloneNode example
- JavaScript createAttribute method
- JavaScript createCaption method
- JavaScript createComment method
- JavaScript createEventObject method
- JavaScript createTFoot method
- JavaScript createTHead method
- JavaScript deleteCaption method
- JavaScript deleteTFoot method
- JavaScript deleteTHead method
- JavaScript dragDrop method


