# Methods

Methods provide ways to manipulate the calendar from JavaScript code.<!--more--> A method operates on a Calendar object that has already been [initialized](initialize-es6.md):

```js
calendar.next();
```

This will call the [next](Calendar-next.md) method and will force to the calendar to move to the next month/week/day.
