files/en-us/web/api/permissions/index.md
{{APIRef("Permissions API")}}{{AvailableInWorkers}}
The Permissions interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions
navigator.permissions.query({ name: "geolocation" }).then((result) => {
if (result.state === "granted") {
showLocalNewsWithGeolocation();
} else if (result.state === "prompt") {
showButtonToEnableLocalNews();
}
// Don't do anything if the permission was denied.
});
{{Specifications}}
{{Compat}}