HTML5 Question: Download HTML5 PDF

Do you know What is the sessionStorage Object in html5? How to create and access?

Tweet Share WhatsApp

Answer:

The sessionStorage object stores the data for one session. The data is deleted when the user closes the browser window. like below we can create and access a sessionStorage here we created “name” as session

<script type=“text/javascript”>
sessionStorage.name=“PHPZAG”;
document.write(sessionStorage.name);
</script>

Download HTML5 PDF Read All 23 HTML5 Questions
Previous QuestionNext Question
Can you explain What the use of Canvas Element in HTML5?Explain What is the use of localStorage in HTML5?