> For the complete documentation index, see [llms.txt](https://corman.gitbook.io/evo-api-draft/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://corman.gitbook.io/evo-api-draft/java/constructing-objects.md).

# Constructing Objects

Constructing Objects with the Java API

This should be able to work, because you can use how JS classes work under the hood (function prototypes) to make this behavior work smoothly.

```typescript
const ls = new ArrayList();
ls.add(1);
```
