Firefox Tomorrow

web api instance property

ScreenDetailed: label property

View on MDN ↗

Limited availabilitySecure context

The label read-only property of the ScreenDetailed interface is a string providing a descriptive label for the screen, for example “Built-in Retina Display”.

This is useful for constructing a list of options to display to the user if you want them to choose a screen to display content on.

Value

A string.

Examples

const screenDetails = await window.getScreenDetails();

// Return the label of the first screen
const screen1Label = screenDetails.screens[0].label;

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also