# Lower

### **Description**‌

The Lower function returns an all lowercase version of the input.

### **Syntax**

‌The syntax for the Lower function is:

`Lower(input)`

#### ‌**Parameters**

‌input - the string for which lowercase is to be set.

### ‌**Returns**

‌The Lower function returns a string.‌

### **Example**

Let's look at some Lower function examples and explore how to use the Lower function.‌

```
Lower("HELLO WORLD")
Result: hello world

Lower("Hello World")
Result: hello world
```
