Browser SDK
Build voice, video and chat applications for the browser
v4
Stable
name$
1get name$(): Observable<string | undefined>
Observable of the participant’s display name.
1get name(): string | undefined
Display name of this participant.
1participant.name$.subscribe((name) => {2 console.log('name:', name);3});