---
title: Methods
excerpt_separator: <!--more-->
---

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):

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

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