Skip to content

Commit a1938ed

Browse files
committed
updated js
1 parent c88da7b commit a1938ed

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

arr.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
let arr = [1,2,3,4];
2+
console.log(arr);
3+
arr.push(5,6);
4+
console.log(arr);

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
</head>
88
<body>
99
<h1>Hello Javascript</h1>
10-
<script src="reassessment.js"></script>
10+
<script src="arr.js"></script>
1111
</body>
1212
</html>

0 commit comments

Comments
 (0)