Skip to content

Instantly share code, notes, and snippets.

@alexcmgit
Created February 13, 2023 18:02
Show Gist options
  • Save alexcmgit/32bbb3a6492c47e14907c0e4a8fa9c89 to your computer and use it in GitHub Desktop.
Save alexcmgit/32bbb3a6492c47e14907c0e4a8fa9c89 to your computer and use it in GitHub Desktop.
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