Created
February 13, 2023 18:02
-
-
Save alexcmgit/32bbb3a6492c47e14907c0e4a8fa9c89 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
const target = 200 | |
const each = 10 | |
const repetitions = Math.ceil(target / each) | |
const remainingHours = 8 | |
const remainingMinutes = remainingHours * 60 | |
const interval = Math.ceil(remainingMinutes / repetitions) | |
console.log(`${each} each ${interval} minutes`) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment