Languages
[Edit]
EN

JavaScript - swap two array elements

3 points
Created by:
Blessing-D
574

In this article, we would like to show you how to swap two array elements in JavaScript.

Quick solution:

const array = ['a', 'b', 'd', 'c'];

const tmp = array[3];
array[3] = array[2];
array[2] = tmp;

or

const array = ['a', 'b', 'd', 'c'];

[array[2], array[3]] = [array[3], array[2]];

 

Practical example

In the below example, we swap the last two items of array.

// ONLINE-RUNNER:browser;

const array = ['a', 'b', 'd', 'c'];

const tmp = array[3];
array[3] = array[2];
array[2] = tmp;

console.log(array);

without creating temporary variable:

// ONLINE-RUNNER:browser;

const array = ['a', 'b', 'd', 'c'];

[array[2], array[3]] = [array[3], array[2]];

console.log(array);

Alternative titles

  1. JavaScript - swapping two items in array
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join