Prev Demo
JavaScript
>
Remove Element
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <p>Click the button to remove tha last country name of an array.</p> <button onclick="myFunction()">Click</button> <p id="myId"></p> <script> var a = ["India", "Pakisthan", "Bangladesh", "China"]; document.getElementById("myId").innerHTML = a; function myFunction() { a.pop(); document.getElementById("myId").innerHTML = a; } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output