Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head lang="en">
    <title>Battery Demo</title>
</head>
<body>
<script>
    navigator.getBattery().then(function(battery) {
        console.log(battery);
        console.log("Battery charging :", battery.charging );
        battery.addEventListener('chargingchange', function() {
            console.log("Battery charging :", battery.charging );
        });
    });
</script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
saan1984pro
0viewers