Skip to content

Instantly share code, notes, and snippets.

@Gulshanidrees
Created June 26, 2025 09:44
Show Gist options
  • Save Gulshanidrees/0dd4aa17a85cc43423522f3f1bc3090b to your computer and use it in GitHub Desktop.
Save Gulshanidrees/0dd4aa17a85cc43423522f3f1bc3090b to your computer and use it in GitHub Desktop.
send me the code in javascript to swap two numbers
function swapNumbers(a, b) {
[a, b] = [b, a];
return [a, b];
}
let x = 10;
let y = 5;
let swapped = swapNumbers(x, y);
console.log(swapped); // Output: [5, 10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment