Local Storage Vs Session Storage in JavaScript
Hello Guuys!
Today we'll be taking a loot two web API and their differences,
## Local Storage
// set the value in local storage object
localStorage.setItem("name", myName);
// get the value from storage
localStorage.getItem("name");
// delete the v...
saidmounaim.hashnode.dev1 min read