Subrata Chsubrata.hashnode.dev·Aug 4, 2024A Journey of a Shopping Cart: From Corner Shop to E-Shop 🛒🛍️ (Part 1)In the ever-changing world of software development, moving from simple procedural code to advanced, modular, and reusable code is crucial. In this post, we will go through the transformation of a basic shopping cart calculation script through differe...Discuss·69 readsEncapsulation and Organisation
Bimbo Adesoyeabimbola.hashnode.dev·Aug 18, 2023Building a Dynamic Shopping Cart with React: A Practical Step-by-Step Guide.One of the main features of practically every website you visit is an online shopping cart. Every company, regardless of size, has things they wish to sell, making the shopping cart one of the most popular and important features for a web developer t...Discuss·2 likesJavaScript
Amit Vishwakarmajust9krish.hashnode.dev·Feb 6, 2023Building a Scalable Shopping Cart System with React UserReducer and ContextAPIShopping carts are a common feature in e-commerce websites, and implementing them can be a challenging task for beginner developers. However, with the help of React's useReducer and ContextAPI, it becomes a lot easier to create a reusable and efficie...Discuss·2 likes·92 readsshopping cart
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...Discuss·42 readsJavaScript