Which code statement correctly retrieves and returns an object from localStorage?
Which code statement correctly retrieves and returns an object from localStorage?
A . const retrieveFromLocalStorage = () =>{
return JSON.stringify(window.localStorage.getItem(storageKey));
}
B. const retrieveFromLocalStorage = (storageKey) =>{ return window.localStorage.getItem(storageKey); }
C. const retrieveFromLocalStorage = (storageKey) =>{
return JSON.parse(window.localStorage.getItem(storageKey));
}
D. const retrieveFromLocalStorage = (storageKey) =>{ return window.localStorage[storageKey];
}
Answer: C
Latest JavaScript Developer I Practice Questions with 144 Q&As
Updated Study Material | Instant Download | Detailed Answers and Explanations
Subscribe
Login
0 Comments