summaryrefslogtreecommitdiffstats
path: root/docs/content/en/methods/duration/Seconds.md
blob: 8b6d060b9ca451247c1d4ccf479564d36aab0231 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
title: Seconds
description: Returns the time.Duration value as a floating point number of seconds.
categories: []
keywords: []
params:
  functions_and_methods:
    returnType: float64
    signatures: [DURATION.Seconds]
---

```go-html-template
{{ $d = time.ParseDuration "3.5h2.5m1.5s" }}
{{ $d.Seconds }} → 12751.5
```