To store an array of objects in local storage with JavaScript, we convert it to a JSON string.
For instance, we write
localStorage.setItem("users", JSON.stringify(users));
to call JSON.stringify with the users array to convert it into a JSON string.
Then we call setItem to store the string as the value with key 'users'.