BatteryManager: dischargingTime property

The BatteryManager.dischargingTime property indicates the amount of time, in seconds, that remains until the battery is fully discharged, or Infinity if the battery is currently charging rather than discharging, or if the system is unable to report the remaining discharging time. When its value changes, the dischargingtimechange event is fired.

Note: Even if the time returned is precise to the second, browsers round them to a higher interval (typically to the closest 15 minutes) for privacy reasons.

Value

A number.

Examples

HTML Content

<div id="dischargingTime">(discharging time unknown)</div>

JavaScript Content

navigator.getBattery().then((battery) => {
  const time = battery.dischargingTime;

  document.querySelector(
    "#dischargingTime"
  ).textContent = `Remaining time to fully discharge the battery: ${time}`;
});

Specifications

Specification
Battery Status API
# dom-batterymanager-dischargingtime

Browser compatibility

BCD tables only load in the browser

See also