ImageTrackList: length property

Note: This feature is available in Dedicated Web Workers.

The length property of the ImageTrackList interface returns the length of the ImageTrackList.

Value

An integer.

Examples

The following example prints the value of length to the console.

js
let tracks = imageDecoder.tracks;
console.log(tracks.length);

Specifications