JSFiddle - React, Tailwind, and code Playground

by Ryan Morris

JavaScript

if (window.localStorage) {
 
    var set = localStorage.getItem("test");
    
    console.log(set);
    
    localStorage.setItem("test", "Ryan");
    
    // also works
    localStorage["jazz"] = 2;
    
    //localStorage.removeItem("key");
    console.log(localStorage.length);

    window.addEventListener("storage", function(e) {
       console.log(e); 
    });
}