I am creating an app that has CRUD functionalities for localStorage. I am trying to save some data to localStorage via the method setItem()
, but instead of successfully saving the data, I am getting the following error:
Error: Unexpected end of JSON input
Here is my Stackblitz URL: https://stackblitz.com/edit/github-efvm9d
To replicate the error:
- Click on 'Add new product' link
- Fill in the form and press the 'Add a product' button
- Observe how the console outputs the error message
Error: Unexpected end of JSON input
I am expecting to be able to add data to localStorage via the setItem()
method.