Created
December 10, 2020 14:15
-
-
Save rvause/286af5837bc6f61327e7c30c24a9842b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getBeats() { | |
var now = new Date(); | |
return Math.floor((((now.getUTCHours() + 1) * 3600) + (now.getUTCMinutes() * 60) + now.getUTCSeconds()) / 86.4); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment