files/en-us/web/api/rtcpeerconnection/icegatheringstate/index.md
{{APIRef("WebRTC")}}
The iceGatheringState read-only property of the {{domxref("RTCPeerConnection")}} interface returns a string that describes the overall ICE gathering state for this connection.
This lets you detect, for example, when collection of ICE candidates has finished.
You can detect when the value of this property changes by watching for an event of type {{domxref("RTCPeerConnection/icegatheringstatechange_event", "icegatheringstatechange")}}.
Note that iceGatheringState represents the overall gathering state of the connection, including every {{domxref("RTCIceTransport")}} used by every {{domxref("RTCRtpSender")}} and every {{domxref("RTCRtpReceiver")}} on the entire connection.
This contrasts with {{domxref("RTCIceTransport.gatheringState")}}, which represents the gathering state for a single transport.
The possible values are:
new
gathering
complete
gathering to gather those candidates.const pc = new RTCPeerConnection();
const state = pc.iceGatheringState;
{{Specifications}}
{{Compat}}