JavaScript removes the last element usage instance of the array using the pop method

  • 2020-05-26 07:49:09
  • OfStack

This example demonstrates the use of JavaScript to remove the last element of an array using the pop method. Share with you for your reference. The details are as follows:

The following code demonstrates the pop method of the JS array, which can be used to remove the last element of the array, effectively using the array as a stack


<!DOCTYPE html>
<html>
<body>
<p id="demo">
Click the button to remove the last array element.
</p>
<button onclick="myFunction()">Try it</button>
<script>
var fruits = ["Banana","Orange","Apple","Mango"];
function myFunction()
{
fruits.pop();
var x=document.getElementById("demo");
x.innerHTML=fruits;
}
</script>
</body>
</html>

The results are as follows:

Banana,Orange,Apple

I hope this article is helpful for you to design javascript program.


Related articles: