JS Coding Questions Logo
JS Coding Questions
#48💼 Interview💻 Code

How do you check web storage browser support

Advertisement

728x90

You need to check browser support for localStorage and sessionStorage before using web storage,

javascript
1if (typeof Storage !== "undefined") {
2  // Code for localStorage/sessionStorage.
3  } else {
4  // Sorry! No Web Storage support..
5  }

Advertisement

Responsive Ad
🎯 Practice NowRelated Challenge

JavaScript Coding Exercise 50

Test your knowledge with this interactive coding challenge.

Start Coding

Advertisement

728x90
48of476