The read-only HTMLMediaElement.paused property tells whether the media element is paused.
A boolean value. true is paused and false is not paused.
const obj = document.createElement("video");
console.log(obj.paused); // trueHTMLMediaElement: Interface used to define the HTMLMediaElement.paused property