| title | As ISO 8601 String |
|---|---|
| version | 2.8.0 |
| signature | moment.duration().toISOString(); |
Returns duration in string as specified by ISO 8601 standard.
moment.duration(1, 'd').toISOString() // "P1D"Format PnYnMnDTnHnMnS description:
| Unit | Meaning |
|---|---|
| P | _P_ stands for period. Placed at the start of the duration representation. |
| Y | Year |
| M | Month |
| D | Day |
| T | Designator that precedes the time components. |
| H | Hour |
| M | Minute |
| S | Second |