> 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.

## name

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

Display name of this participant.

## **Examples**

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