In this simple JavaScript example, we take a look at how to convert seconds to minutes.
Example:
const seconds = 185;
const minutes = Math.floor(seconds / 60);
const remainingSeconds = seconds % 60;
console.log(seconds + " seconds is " + minutes + " minutes and " + remainingSeconds + " seconds");
Output:

Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!