The media read-only property of the MediaQueryList interface is a string representing a serialized media query. 
 The media read-only property of the MediaQueryList interface is a string representing a serialized media query. 
A string representing a serialized media query.
 This example runs the media query (max-width: 600px) and displays the value of the resulting MediaQueryList's media property in a <span>. 
js
let mql = window.matchMedia("(max-width: 600px)"); document.querySelector(".mq-value").innerText = mql.media;
 The JavaScript code passes the media query to match into matchMedia() to compile it, then sets the <span>'s innerText to the value of the result's media property. 
html
<span class="mq-value"></span>
A simple <span> to receive the output.
| Specification | 
|---|
| CSSOM View Module  # dom-mediaquerylist-media  | 
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
media | 
9 | 12 | 6 | 10 | 12.1 | 5.1 | ≤37 | 18 | 6 | 12.1 | 5 | 1.0 | 
    © 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
    https://developer.mozilla.org/en-US/docs/Web/API/MediaQueryList/media