Skip to content

Commit 5f4767f

Browse files
authored
fix: semicolons (5-25)
1 parent 64c4314 commit 5f4767f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

5-arrays/25-times-tables.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ const multiple = 5;
55
const numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
66

77
for(let i = 0; i < numbers.length; i++){
8-
console.log(multiple + " x " + numbers[i] + " = " + multiple * numbers[i])
8+
console.log(multiple + " x " + numbers[i] + " = " + multiple * numbers[i]);
99
}

0 commit comments

Comments
 (0)