John Au-Yeung
1 min readJan 15, 2020

--

Hi Evan. Thanks so much for reading.

Local storage is a good option for storing simple data in the browser.

A loop is only good for processing arrays and other iterable objects so it’s not useful for storage.

You can store selectors as a string in Local storage like anything else. If you want to store Twitter follower names, you can just put them in an array and then call JSON.stringify to convert the array into a string.

--

--

No responses yet