# get

## Arguments

| Name | Type   | Description                  |
| ---- | ------ | ---------------------------- |
| key  | String | The key to pull from the map |
| map  | Map    | The map to get data from     |

## Returns

| Type | Description                                         |
| ---- | --------------------------------------------------- |
| Any  | The value that lived at the provided key in the map |

## Usage

```javascript
get('b', Map { 'a' => 1 'b' => 2 }) // => 2
```
