Skip to content

Bit #20

It’s possible to identify how many separate fingers are touching the screen.

document.body.addEventListener("touchstart", (e) => {
document.body.textContent = `${e.touches.length} fingers`;
});