How to retrieve Data from server - Outlook 365 App

My local folder “Archive” appears to be empty and it doesn’t show the link “retrieve data from the server” but when I look at this inbox property I see Local Data “Archive” size 0 yet when I look at Server Data “Archive” size shows close to 100MB. How do I get to this data?

I am searching for deleted folders and I tried all the other options.

Thanks

Use the getItem() function to retrieve data from LocalStorage. This function takes the key that was used while saving the data as an argument.

In your console, let’s retrieve and print the value that was saved previously with setItem():

let techStack = localStorage.getItem(“tech”);
console.log(techStack);

Your console should print “JavaScript”.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.