x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>JavaScript Array constructor</h1>
6
<script>
7
    const arr = ["HTML", "CSS", "Javascript", "jQuery"];
8
    const result = arr.constructor;
9
    document.write(result)
10
</script>
11
12
</body>
13
</html>