Firefox Tomorrow

web api instance property

Gamepad: connected property

View on MDN ↗

The Gamepad.connected property of the Gamepad interface returns a boolean indicating whether the gamepad is still connected to the system.

If the gamepad is connected, the value is true; if not, it is false.

Value

A boolean.

Examples

const gp = navigator.getGamepads()[0];
console.log(gp.connected);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also

Using the Gamepad API