# .toLower()

## Description

toLower returns the input string but in fully lowercase

## Parameters

toLower takes no parameters

## Usage On Strings

```javascript
num = "Hello World"

log num.toLower()
// hello world
```
