Skip to content

Commit 8968976

Browse files
committed
Code style
1 parent eaed6c0 commit 8968976

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

JavaScript/4-for-in-obj.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const hash = {
44
first: 7,
55
second: 10,
66
third: 1,
7-
fourth: 5
7+
fourth: 5,
88
};
99

1010
hash.fifth = 2;

JavaScript/a-map.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const res1 = [7, 10, 1, 5, 2]
1818
.reduce((acc, val) => acc + val);
1919

2020
console.log(res1);
21+
console.log();
2122

2223
[7, 10, 1, 5, 2]
2324
.map(log)

0 commit comments

Comments
 (0)