how to check storage local full code example
Example: how to check if local storage is available
if (typeof(Storage) !== "undefined")
{
console.log("localStorage is available.");
}
else
{
console.log("localStorage is not supported by current browser.");
}