Hi dear welcome to "CodePrime" Blog . In this post you are going to learn How to use JavaScript Array Pop & Push Method | Javascript Tutorial | BY Codeprime. First Creat A index.html file Copy This HTML CODE and pest it one your code editor. 2ndly creat pop and push.js file Then Copy The JS CODE and pest it then open the index.html file with your browser.
HTML CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="pop and push.js"></script>
<title>javascript</title>
</head>
<body>
<!-- <h2>Javascript Tutorial</h2>
<h3>By Codeprime</h3> -->
</body>
</html>
JAVSCRIPT CODE
var a = ["physic", "math", "english", "chemistry"];
document.write(a + "<br>");
a.pop();
document.write(a + "<br>");
a.push("Biology");
document.write(a + "<br>");
a.push("chemisty");
document.write(a + "<br>");
0 Comments