Skip to content

Commit ddf6b4f

Browse files
committed
add commit
1 parent b033e4e commit ddf6b4f

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

app1.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
const arr = [];
22

3-
arr.push(1,2,3,2,3,'dsf');
3+
arr.push(1,2,3,2,3,'dsf');
44

5-
console.log(arr);
6-
console.log(arr[0]);
7-
console.log(arr[1]);
5+
console.log(arr); // [1,2,3,2,3,'dsf']
6+
console.log(arr[0]); // 1
7+
console.log(arr[1]); // 2
88

99
arr[0] = 'Start'
1010

11-
console.log(arr);
11+
console.log(arr); // ['Start',2,3,2,3,'dsf']
1212

1313

app2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
[9,8,6]
55
]
66

7-
console.log(matrix[2][0]);
7+
console.log(matrix[2][0]); // 9
88

0 commit comments

Comments
 (0)