# .len

## Description

Len is a dynamic property, that returns the length of its input value.

## Parameters

Len takes no parameters

## Usage On Strings

```javascript
str = "12345"
// setup the string

log str.len
// returns 5
```
