x
1
2
<html>
3
<body>
4
5
<h2>JavaScript Arrays</h2>
6
7
<script>
8
let courses = ['HTML', 'CSS', 'JavaScript', 'MYSQL'];
9
document.write("<b>" + courses + "</b><br>");
10
document.write("<b>" + courses.fill('PHP') + "</b>");
11
</script>
12
13
</body>
14
</html>