Back to Content

RTCStatsReport: has() method

files/en-us/web/api/rtcstatsreport/has/index.md

latest735 B
Original Source

{{APIRef("WebRTC")}}

The has() method of the {{domxref("RTCStatsReport")}} interface returns a boolean indicating whether a report contains a statistics dictionary with the specified id.

The method is otherwise the same as {{jsxref("Map.prototype.has()")}}.

Syntax

js-nolint
has(id)

Parameters

  • id
    • : A string containing the ID of a statistics object that might be present in this RTCStatsReport.

Return value

true if an element with the specified id exists in the RTCStatsReport object; otherwise false.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{jsxref("Map")}}
  • {{jsxref("Map.prototype.set()")}}
  • {{jsxref("Map.prototype.get()")}}