# .len

## Description

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

## Parameters

Len takes no parameters

## Usage On Arrays

```javascript
arr = [1,2,3,4,5]
// setup the array

log arr.len
// returns 5
```
