Como verificar se o armazenamento local está disponível
if (typeof(Storage) !== "undefined")
{
console.log("localStorage is available.");
}
else
{
console.log("localStorage is not supported by current browser.");
}
Yucky Yak