How to stringify the items Array in main.js and store it in localStorage:

JSON.stringify will only convert value type property, array and objects.

window.localStorage.setItem("myKey", JSON.stringify(items));

Leave a comment

Your email address will not be published. Required fields are marked *