Skip to content

Instantly share code, notes, and snippets.

@chikoski
Created April 23, 2015 02:00
Show Gist options
  • Select an option

  • Save chikoski/95d22790a7efb573f88c to your computer and use it in GitHub Desktop.

Select an option

Save chikoski/95d22790a7efb573f88c to your computer and use it in GitHub Desktop.
function getMinute(min, after){
return (min + after) % 60;
}
function getHour(hour, after){
return (hour + after) % 24;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment