Skip to main content

Posts

What are NFT in crypto world?

  NFT stands for Non-fungible token.A non-fungible token is a unique and non-interchangeable unit of data stored on a digital ledger. NFTs can be used to represent easily-reproducible items such as photos, videos, audio, and other types of digital files as unique items, and use blockchain technology to establish a verified and public proof of ownership.
Recent posts

Client-Side Storage in JavaScript

  What is Client-Side Storage? As the name suggests, client-side storage allows the user to  store data on the client  (i.e. user's browser). Conversely, server-side storage will store data on the server (i.e. an external database). When is it useful? Client-side storage can be advantageous for the following use cases: Quick and network-independent  access to data Store user preferences  (i.e. custom widgets, font size, colour, etc.) Store session of previous activity  (i.e. logged in an account, shopping cart, etc.) Save data locally for offline use Types of Client-Side Storage 1. Cookies  (Not Recommended) You probably have heard of cookies. They are the most classic type of client-side storage and have been used by sites since the early days of the web. Cookies are  sent from the server  to the client and then  stored on the client . The stored...