JSFiddle - React, Tailwind, and code Playground

by Narayan Prusty

JavaScript

var array = [1, 2, 3];

localStorage.setItem("array", JSON.stringify(array));
array = JSON.parse(localStorage.getItem("array"));


console.log(typeof array); //object
console.log(array); //Object {x: 12, y: 56}