The example in this article describes the use of JavaScript to remove the last element of an array using the pop method. Share it with everyone for your reference. The details are as follows:
The following code demonstrates the pop method of a JS array, which can be used to remove the last element of the array. In fact, it uses 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 running results are as follows:
Banana,Orange,Apple
I hope this article will be helpful to everyone’s JavaScript programming design.