RTCStatsReport: [Symbol.iterator]() method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨January 2020⁩.

The [Symbol.iterator]() method of the RTCStatsReport interface implements the iterable protocol and allows statistics reports to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns an iterator object that yields the key-value pairs of the report in insertion order.

The initial value of this property is the same function object as the initial value of the RTCStatsReport.entries() method.

The method is otherwise the same as Map.prototype[Symbol.iterator]().

Syntax

js
RTCStatsReport[Symbol.iterator]()

Parameters

None.

Return value

The same return value as RTCStatsReport.entries(). This is a new iterable iterator object that yields the key-value (id-"statistics dictionary") pairs of the report.

Specifications

This feature does not appear to be defined in any specification.

Browser compatibility

See also