Created
January 26, 2021 05:43
-
-
Save anushshukla/6c10e790dbe5875a22444000d796e806 to your computer and use it in GitHub Desktop.
Conver minutes into hours and minutes
This file contains hidden or 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 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