Back to Content

HIDDevice: productName property

files/en-us/web/api/hiddevice/productname/index.md

latest640 B
Original Source

{{securecontext_header}}{{APIRef("WebHID API")}}{{SeeCompatTable}}{{AvailableInWorkers("window_and_worker_except_shared")}}

The productName read-only property of the {{domxref("HIDDevice")}} interface returns the product name of the connected HID device.

Value

A string.

Examples

The following example retrieves devices with {{domxref("HID.getDevices()")}} and logs the value of productName to the console.

js
let devices = await navigator.hid.getDevices();
devices.forEach((device) => {
  console.log(`HID: ${device.productName}`);
});

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}