
- MomentJS Tutorial
- MomentJS - Home
- MomentJS - Overview
- MomentJS - Environment Setup
- MomentJS - Introduction
- MomentJS - Parsing Date And Time
- MomentJS - Date Validation
- MomentJS - Getter/Setter
- Manipulate Date And Time
- Formatting Date And Time
- MomentJS - Date Queries
- MomentJS - Internationalization
- MomentJS - Customization
- MomentJS - Durations
- MomentJS - Utilities
- MomentJS - Plugins
- MomentJS - Examples
- MomentJS Useful Resources
- MomentJS - Quick Guide
- MomentJS - Useful Resources
- MomentJS - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
MomentJS - Seconds
This method will give the number of seconds in the duration. The value returned will be between 0-59. If you want proper length of seconds in that duration make use of moment.duration().asSeconds().
Syntax
moment.duration().seconds(); moment.duration().asSeconds();
Example
var a = moment.duration(20000).seconds();
Output
If you want to display the length of seconds in a duration make use of moment.duration().asSeconds() as follows −
Example
var a = moment.duration(600).asSeconds();
Output

momentjs_durations.htm
Advertisements