getAvailability() returns a promise that resolves with true if the user agent is running on a system that has a Bluetooth radio and false otherwise. The powered state of the Bluetooth radio does not influence the availability because applications can prompt users to turn on the radio using requestDevice(). The availabilitychanged event can be used to detect changes in the availability of the Bluetooth radio.
This API is useful for developers to know whether they should show UI for Web Bluetooth or not to the user.
Docs: https://chromium-review.googlesource.com/c/chromium/src/+/1651516
Samples: https://googlechrome.github.io/samples/web-bluetooth/availability.html https://googlechrome.github.io/samples/web-bluetooth/availability-async-await.html
Explainers: No explainer is needed as it is a very small change to the existing Web Bluetooth API.