> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# name$

> Observable of the participant's display name.

```ts
get name$(): Observable<string | undefined>
```

Observable of the participant's display name.

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`name$`](/docs/browser-sdk/v4/reference/participant#name-1)

## name

```ts
get name(): string | undefined
```

Display name of this participant.

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`name`](/docs/browser-sdk/v4/reference/participant#name)

## **Examples**

```ts
selfParticipant.name$.subscribe((name) => {
  console.log('name:', name);
});
```