# Subscribe

### Example

```javascript
client.subscribe(function(err, result) {
  console.log(result);
});
```

아래는 수신하는 알림(Notification)의 예제입니다.

```javascript
[
  'justsaying',
  {
    subject: 'exchange_rates',
    body: {
      MO_KRW: 100.000,
      MO_USD: 0.087534,
      BTC_MO: 124,700
    } 
  }
]
```
