Skip to content

Instantly share code, notes, and snippets.

@alexrintt
Created February 13, 2023 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexrintt/32bbb3a6492c47e14907c0e4a8fa9c89 to your computer and use it in GitHub Desktop.
Save alexrintt/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