Skip to content

Commit 059b3ca

Browse files
committed
Complete Day 18 - Adding Up Times with Reduce
1 parent a8783fb commit 059b3ca

2 files changed

Lines changed: 2 additions & 190 deletions

File tree

18 - Adding Up Times with Reduce/index-START.html

Lines changed: 0 additions & 188 deletions
This file was deleted.

18 - Adding Up Times with Reduce/index-FINISHED.html renamed to 18 - Adding Up Times with Reduce/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<title>Videos</title>
6-
<link rel="icon" href="https://fav.farm/" />
6+
<link rel="icon" href="https://fav.farm/🔥" />
77
</head>
88
<body>
99
<ul class="videos">
@@ -197,7 +197,7 @@
197197
let secondsLeft = seconds;
198198
const hours = Math.floor(secondsLeft / 3600);
199199
secondsLeft = secondsLeft % 3600;
200-
200+
201201
const mins = Math.floor(secondsLeft / 60);
202202
secondsLeft = secondsLeft % 60;
203203

0 commit comments

Comments
 (0)