Which of the following statements is not true of web storage?



You can store up to 5MB of data.

It’s supported by every modern browser.

You can store data indefinitely or for the browser session.

The data in web storage is passed to the server with every HTTP request.

Respuesta :

Answer:

The data in web storage is passed to the server with every HTTP request.

Explanation:

There are basically two Web storage APIs Session storage and local storage.Both can store data up to 5MB. They are supported by every modern browser.You can store data in local storage indefinitely and for browser session in session storage.There is no data or information in HTTP request header.So we conclude that option 4 is the answer.