Languages
[Edit]
EN

JavaScript - replace last item in array

0 points
Created by:
Leen-Kerr
571

In this article, we would like to show you how to replace last item in array in JavaScript.

Quick solution:

// ONLINE-RUNNER:browser;

var array = ['a', 'b', 'c'];

var replacement = 'x';

array[array.length - 1] = replacement;

console.log(array);  // ['a', 'b', 'x']
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