Web storage in html5 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Web storage in html5

can any one tell me how can i add the feature of storing data in my website.

27th Mar 2020, 5:30 PM
Muhammad Awwab Khan
Muhammad Awwab Khan - avatar
1 Answer
+ 5
An example of storing and calling data on client site as follows: localStorage.setItem("name",item); localStorage.getItem("name");
27th Mar 2020, 5:58 PM
JaScript
JaScript - avatar