Prev Demo
Array Unshift Method
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h1>Unshift Method</h1> <p>Click the button to add a new element to the 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.unshift("SriLanka"); document.getElementById("myId").innerHTML = a; } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output