> For the complete documentation index, see [llms.txt](https://docs.digitalsamba.com/reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalsamba.com/reference/sdk/properties/features.md).

# features

Gives you access to the current available features inside the room - e.g. **chat** or **screenshare**.\
Also the [featureSetUpdated](/reference/sdk/events/featuresetupdated.md) event is being emitted if the room state changes at any point in time.

```javascript
//Prints a boolean value if chat feature is available or not
console.log('Chat feature status:', sambaFrame.features['chat']);
```

You can also use the [featureEnabled](/reference/sdk/methods/featureenabled.md) method to check if a feature is available.

Here is a full list of the possible features:

```typescript
chat, endSession, fullScreen, languageSelection, minimizeOwnTile,
participantsList, pin, screenshare, recordings, virtualBackgrounds,
raiseHand, invite
```
