DEV Community

Cover image for How to Remove Last Element from Array in Javascript?
Code And Deploy
Code And Deploy

Posted on

How to Remove Last Element from Array in Javascript?

Originally posted @ https://codeanddeploy.com visit and download the sample code: https://codeanddeploy.com/blog/javascript/how-to-remove-last-element-from-array-in-javascript

In this post, I'm sharing a short post on how to remove the last element value from an array in Javascript. If you need to remove the last value of the array before processing the data then array.pop() done this.

Here is the example solution below:

<script>
var websites = ['google.com', 'facebook.com', 'youtube.com'];

websites.pop();

console.log(websites);

// result: ["google.com", "facebook.com"]
</script>
Enter fullscreen mode Exit fullscreen mode

I hope this tutorial can help you. Kindly visit here https://codeanddeploy.com/blog/javascript/how-to-remove-last-element-from-array-in-javascript if you want to download this code.

Happy coding :)

Top comments (0)