Skip to content

Commit 184f7ae

Browse files
authored
Merge pull request #872 from James868/patch-3
Fix typo
2 parents 6d11147 + 323de66 commit 184f7ae

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/10-date/6-get-seconds-today

1 file changed

+1
-1
lines changed

1-js/05-data-types/10-date/6-get-seconds-today/solution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ An alternative solution would be to get hours/minutes/seconds and convert them t
2222
function getSecondsToday() {
2323
let d = new Date();
2424
return d.getHours() * 3600 + d.getMinutes() * 60 + d.getSeconds();
25-
};
25+
}
2626
```

0 commit comments

Comments
 (0)