> ## Documentation Index
> Fetch the complete documentation index at: https://docs.daily.co/llms.txt
> Use this file to discover all available pages before exploring further.

# showLocalVideo()

> Returns whether the local participant's self-view is currently visible in Daily Prebuilt.

`showLocalVideo()`

<Badge color="green">{"✓"} Prebuilt</Badge> <Badge color="red">{"✗"} Custom</Badge>

## Return value

Returns `boolean` — `true` if the self-view is visible, `false` if hidden.

## Example

```javascript theme={null}
if (!call.showLocalVideo()) {
  call.setShowLocalVideo(true);
}
```

## See also

<CardGroup>
  <Card title="Types" icon="t" iconType="solid">
    * [DailyCallOptions: showLocalVideo](/reference/daily-js/types/daily-call-options#param-show-local-video)
  </Card>

  <Card title="Methods" icon="code" iconType="solid">
    * [setShowLocalVideo()](/reference/daily-js/instance-methods/set-show-local-video)
  </Card>
</CardGroup>
