Skip to content

Instantly share code, notes, and snippets.

@anushshukla
Created January 26, 2021 05:43
Show Gist options
  • Select an option

  • Save anushshukla/6c10e790dbe5875a22444000d796e806 to your computer and use it in GitHub Desktop.

Select an option

Save anushshukla/6c10e790dbe5875a22444000d796e806 to your computer and use it in GitHub Desktop.
Conver minutes into hours and minutes
const TimeConvert = num => `${Math.floor(num/60)}:${num%60}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment