# user

Learn how to access the user instance.

This property holds a reference to the user instance.

Please refer to the [User API reference](/reference/sdk/javascript/api/user) for more details.

## Signature

This property has the following signature:

```ts
public get user(): User
```

## Example

Here is a basic example of how to use this property:

```ts
import croct from '@croct/plug';

croct.user.edit()
  .add('interests', 'JavaScript')
  .save();
```
