mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-15 09:09:55 -04:00
25 lines
528 B
Markdown
25 lines
528 B
Markdown
---
|
|
title: or
|
|
description: Returns the first truthy argument. If all arguments are falsy, returns the last argument.
|
|
categories: []
|
|
keywords: []
|
|
params:
|
|
functions_and_methods:
|
|
aliases: []
|
|
returnType: any
|
|
signatures: [or VALUE...]
|
|
---
|
|
|
|
{{% include "/_common/functions/truthy-falsy.md" %}}
|
|
|
|
```go-html-template
|
|
{{ or 0 1 2 }} → 1
|
|
{{ or false "a" 1 }} → a
|
|
{{ or 0 true "a" }} → true
|
|
|
|
{{ or false "" 0 }} → 0
|
|
{{ or 0 "" false }} → false
|
|
```
|
|
|
|
{{% include "/_common/functions/go-template/text-template.md" %}}
|