Sven Willhauksvensblog.hashnode.dev·Sep 10, 2023Day 15 of learning JavaScript: Local storage & array in local storageWhen we try to use the Chrome extension, there is a problem with storing data. The moment we click anywhere else, for example, to copy a link, the Chrome extension closes. If we open the Chrome extension again, all data we stored recently gets cleare...localstorage
Abdulazeez Akindolapocloudcoded.hashnode.dev·Jun 3, 2023Unveiling the Power of JSON and JSON.stringify(): Simplifying Data InterchangeIn the vast realm of web development and data exchange, a lightweight yet powerful player known as JSON, standing for “JavaScript Object Notation” is a captivating technology that has transformed the way data is structured, transmitted, and stored. I...10 likes·30 readsjson
Alex Anieocxigin.hashnode.dev·Apr 7, 2023What is JSONJavaScript Object Notation (JSON) is a lightweight text-based format for storing structured data that can be assembled, parsed and generated by JavaScript and other C-family ( C, C++, C#, Java, JavaScript, Perl, Python) programming languages. Uses of...114 readsjson
Subrata Chsubrata.hashnode.dev·Jun 13, 2022Local StorageLocal Storage is a storage system built into browsers, it helps to store various information on the client side. Local storage is better than cookies, up to 5MB data can be stored. Even though, local storage only stores string. However, using JSON.st...43 readsJavaScript