web api interface
MimeTypeArray
The MimeTypeArray interface returns an array of MimeType instances, each of which contains information about a supported browser plugins. This object is returned by the deprecated mimeTypes property.
This interface was an attempt to create an unmodifiable list and only continues to be supported to not break code that’s already using it. Modern APIs represent list structures using types based on JavaScript arrays, thus making many array methods available, and at the same time imposing additional semantics on their usage (such as making their items read-only).
Instance properties
lengthDeprecated- : The number of items in the array.
Instance methods
item()Deprecated- : Returns the
MimeTypeobject with the specified index.
- : Returns the
namedItem()Deprecated- : Returns the
MimeTypeobject with the specified name.
- : Returns the
Example
The following example tests whether a plugin is available for the ‘application/pdf’ mime type and if so, logs its description.
const mimeTypes = navigator.mimeTypes;
const pdf = mimeTypes.namedItem("application/pdf");
if (pdf) {
console.log(pdf.description);
}
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.