It’s continuation of my previous post on HTML5 Interview Questions with detailed answers. In previous post we started to set a base knowledge for latest HTML standard i.e HTML5. Later discussing about HTML5 new elements and more details about Graphics related concepts including SVG and Canvas.
I’ll recommend to read the following posts on HTML5 Interview Questions:
- Top 10 HTML5 Interview Questions
An overview of most important Interview Questions on HTML5. - a MUST HAVE HTML5 Interview Questions – Part 1
Part-1 of HTML5 Interview Questions series.
Questions are moved to other Parts as mentioned above.
Here we will continue exploring more HTML5 concepts with the help of Interview Questions.
HTML5 Interview Questions List – Part 2
What is localStorage in HTML5?
In order to store data locally, HTML5 supports for localStorage object. It stores data for a longer time in a client browser but it doesn’t lost data even if browser is closed. This purpose was achieved previously with the help of Cookies.
localStorage has following advantages as compared to using Cookies:
- localStorage has better performance even for larger amount of data.
- localStorage can store data for longer period.
- localStorage is more secure as compared to cookies.
What about browser support for localStorage in HTML5?
Browser support for localStorage in HTML5 is as follows:
- Chrome 4
- IE 8+
- firefox 3.5+
- Safari 4
- Opera 10.5
<<< Previous: HTML5 Interview Questions – Part 1
Other Related Articles:
- Browser back button JavaScript
- Webforms Vs MVC
- ASP.NET MVC3 Vs MVC4 Vs MVC5
- ASP.NET Web API by Example
- jQuery REST call
- WCF Vs Web Services
- Essential WCF Tutorial
- WCF Hosting (Console | Windows Service | IIS)
Top 10 Interview Questions and Answers Series:
- Top 10 WCF Interview Questions
- Comprehensive Series of WCF Interview Questions
- Top 10 HTML5 Interview Questions
- Top 10 ASP.NET Interview Questions
- Comprehensive Series of ASP.NET Interview Questions
- Top 10 ASP.NET MVC Interview Questions
- Top 10 ASP.NET Web API Interview Questions
- Top 10 ASP.NET AJAX Interview Questions
The post a MUST HAVE HTML5 Interview Questions and Answers – Part 2 appeared first on Web Development Tutorial.