Skip to content

Commit 323de66

Browse files
authored
Fix typo
Remove semicolon at the end of the function
1 parent 706b1f2 commit 323de66

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

Lines changed: 1 addition & 1 deletion
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)