x
1
2
<html>
3
<body>
4
5
<h2>JavaScript Arrays</h2>
6
7
<script>
8
let courses = ['HTML', 'CSS', 'JavaScript', 'PHP','MYSQL',];
9
/* Before pop */
10
document.write("<b>" + courses+ "</b><br>");
11
/* Useing pop */
12
document.write("<b>" + courses.pop() + "</b><br>");
13
/* After pop array without last element */
14
document.write("<b>" + courses+ "</b>");
15
16
</script>
17
18
</body>
19
</html>