Leetcode
Leetcode copied to clipboard
47. 你如何检查网络存储浏览器支持
在使用网络存储之前,您需要检查浏览器对 localStorage 和 sessionStorage 的支持,
if (typeof Storage !== "undefined") {
// Code for localStorage/sessionStorage.
} else {
// Sorry! No Web Storage support..
}