web api instance property
MIDIAccess: outputs property
Secure context
The outputs read-only property of the MIDIAccess interface provides access to any available MIDI output ports.
Value
A MIDIOutputMap instance.
Examples
The requestMIDIAccess() method returns a promise that resolves with a MIDIAccess object. Printing the value of outputs to the console returns a MIDIOutputMap.
navigator.requestMIDIAccess().then((access) => {
console.log(access.outputs);
});
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.