Files
30-seconds-of-code/snippets/supportsTouchEvents.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

20 lines
347 B
Markdown

---
title: supportsTouchEvents
tags: browser,beginner
firstSeen: 2020-05-04T12:57:23+03:00
lastUpdated: 2020-10-22T20:24:30+03:00
---
Checks if touch events are supported.
- Check if `'ontouchstart'` exists in `window`.
```js
const supportsTouchEvents = () =>
window && 'ontouchstart' in window;
```
```js
supportsTouchEvents(); // true
```