JS Basic
JS Interview Programs
- JS Interview Programs
- JS Abundant Number
- JS Amicable Number
- JS Armstrong Number
- JS Average of N Numbers
- JS Automorphic Number
- JS Biggest of three numbers
- JS Binary to Decimal
- JS Common Divisors
- JS Composite Number
- JS Condense a Number
- JS Cube Number
- JS Decimal to Binary
- JS Decimal to Octal
- JS Disarium Number
- JS Even Number
- JS Evil Number
- JS Factorial of a Number
- JS Fibonacci Series
- JS GCD
- JS Happy Number
- JS Harshad Number
- JS LCM
- JS Leap Year
- JS Magic Number
- JS Matrix Addition
- JS Matrix Division
- JS Matrix Multiplication
- JS Matrix Subtraction
- JS Matrix Transpose
- JS Maximum Value of an Array
- JS Minimum Value of an Array
- JS Multiplication Table
- JS Natural Number
- JS Number Combination
- JS Odd Number
- JS Palindrome Number
- JS Pascalβs Triangle
- JS Perfect Number
- JS Perfect Square
- JS Power of 2
- JS Power of 3
- JS Pronic Number
- JS Prime Factor
- JS Prime Number
- JS Smith Number
- JS Strong Number
- JS Sum of Array
- JS Sum of Digits
- JS Swap Two Numbers
- JS Triangular Number
JavaScript Program to Swap Two Numbers
Photo Credit to CodeToFun
π Introduction
In the world of programming, performing basic operations on numbers is a fundamental task. Swapping two numbers is one such operation that involves exchanging the values of two variables. This operation is commonly used in various algorithms and programs.
In this tutorial, we will explore a simple JavaScript program designed to swap the values of two numbers.
π Example
Let's delve into the JavaScript code that accomplishes this task.
// Function to swap two numbers
function swapNumbers(a, b) {
// Destructuring assignment to swap values without a temporary variable
[a, b] = [b, a];
return [a, b];
}
// Driver program
// Replace these values with the numbers you want to swap
let num1 = 5,
num2 = 10;
console.log(`Before swapping: num1 = ${num1}, num2 = ${num2}`);
// Call the function to swap the numbers
[num1, num2] = swapNumbers(num1, num2);
console.log(`After swapping: num1 = ${num1}, num2 = ${num2}`);
π» Testing the Program
To test the program with different numbers, modify the values of num1 and num2 in the main program.
Before swapping: num1 = 5, num2 = 10 After swapping: num1 = 10, num2 = 5
π§ How the Program Works
- The program defines a function swapNumbers that takes two parameters, a and b, and uses destructuring assignment to swap their values without a temporary variable.
- Inside the main program, replace the values of num1 and num2 with the numbers you want to swap.
- The program prints the values of num1 and num2 before and after swapping.
π§ Understanding the Concept of Swapping Two Numbers
Swapping two numbers involves exchanging their values. In the provided program, a temporary variable is used to hold the value of one variable while the values of the two variables are exchanged.
π’ Optimizing the Program
While the provided program is a straightforward way to swap two numbers, consider exploring and implementing alternative approaches or optimizations.
Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!.
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (JavaScript Program to Swap Two Numbers), please comment here. I will help you immediately.