Note: This feature is available in Dedicated Web Workers.
The selected property of the ImageTrack interface returns true if the track is selected for decoding.
A Boolean, if true the track is selected for decoding.
The following example prints the value of selected to the console.
let track = imageDecoder.tracks.selectedTrack;
console.log(track.selected); // this is the selected track so should return true.