MIDIPort: name プロパティ

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

安全なコンテキスト用: この機能は一部またはすべての対応しているブラウザーにおいて、安全なコンテキスト (HTTPS) でのみ利用できます。

MIDIPort インターフェイスの読み取り専用プロパティ name は、ポートのシステム名を返します。

ポートのシステム名を表す文字列です。

以下の例では、すべての入力ポートを走査し、それぞれの名前をコンソールに出力します。

js
for (const entry of midiAccess.inputs) {
  const input = entry[1];
  console.log(input.name);
}

仕様書

Specification
Web MIDI API
# dom-midiport-name

ブラウザーの互換性

BCD tables only load in the browser