MimeTypeArray
Deprecated
Avoid using this feature in new projects. This feature may be a candidate for removal from web standards or browsers.>
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 Navigator.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
MimeTypeArray.length-
The number of items in the array.
Instance methods
MimeTypeArray.item()-
Returns the
MimeTypeobject with the specified index. MimeTypeArray.namedItem()-
Returns the
MimeTypeobject with the specified name.
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
| Specification |
|---|
| HTML> # mimetypearray> |