this function is used to store items in local storage

Solutions on MaxInterview for this function is used to store items in local storage by the best coders in the world

showing results for - "this function is used to store items in local storage"
Claudio
15 Jan 2019
1window.localStorage.setItem("grade","One");
2//in this case, the `grade` is the key while `One` is the value.
3