Remove semicolon at the end of the function
This commit is contained in:
Rizky 2019-03-26 05:31:56 +00:00 committed by GitHub
parent 706b1f26b2
commit 323de66b20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,5 +22,5 @@ An alternative solution would be to get hours/minutes/seconds and convert them t
function getSecondsToday() {
let d = new Date();
return d.getHours() * 3600 + d.getMinutes() * 60 + d.getSeconds();
};
}
```