Baseline Widely available
Note: This feature is available in Web Workers.
The close()
method of the BroadcastChannel
interface terminates the connection to the underlying channel, allowing the object to be garbage collected. This is a necessary step to perform as there is no other way for a browser to know that this channel is not needed anymore.
None.
Return valueNone (undefined
).
// Connect to a channel
const bc = new BroadcastChannel("test_channel");
// More operations (like postMessage, â¦)
// When done, disconnect from the channel
bc.close();
Specifications Browser compatibility See also
BroadcastChannel
, the interface it belongs to.RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4