The seeking read-only property of the HTMLMediaElement interface is a Boolean indicating whether the resource, the <audio> or <video>, is in the process of seeking to a new position.
A boolean value.
const el = document.querySelector("video");
console.log(el.seeking); // true or falseseeking eventseeked eventHTMLVideoElementHTMLAudioElement