# LOWER

The LOWER function converts a text string into lowercase. Node references are also accepted as arguments.

## Syntax

```javascript
lower(value:string)
```

## Arguments

value - Required. A text string.&#x20;

## Example

```javascript
lower('INFORiver')
```

Returns “inforiver".
