Answers for "how to check if a value exists in a local storage array in javascript"

0

check if localstorage key exists js

if("user" in localStorage){
   alert('yes');
} else {
   alert('no');
}
Posted by: Guest on July-04-2020

Code answers related to "how to check if a value exists in a local storage array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language