Storage Information

The navigator object contains information about your storage system and languages.


RESETRUNFULL
<!doctype html><html><body style="height:100px">
<script>
function p(o){
  document.write(JSON.stringify(o)+"<br/>");
}
(async()=>{
    p(await navigator.storage.estimate());
    p(await navigator.storage.persist());     // able to persist your site's storage?
    p(await navigator.storage.persisted());   // persistence for storage has been granted?
    p(navigator.language); 
    p(navigator.languages);
})();
</script></body></html>