Skip to content
Submitted 10 months ago

Browser Extension Manager UI

@Boyutife
A solution to the Browser extension manager UI challenge

Solution retrospective


What are you most proud of, and what would you do differently next time?

I am most proud of my progress and achievements with JavaScript. Throughout this project, I gained a deeper understanding of the language and was able to apply my knowledge in meaningful ways. The experience helped me refine my skills in problem-solving and writing clean, functional code.

Looking ahead, I would approach the learning process differently. In the future, I plan to ensure that I have a more solid grasp of the subject matter before diving into its application. This will allow me to build a stronger foundation and make the learning process more efficient and effective.

What challenges did you encounter, and how did you overcome them?

I encountered several challenges throughout the project, but one of the most significant was working with localStorage. Specifically, I needed the page to load with the user's last choices, which initially seemed tricky. However, with the guidance and support from ChatGPT, I was able to navigate the issue effectively. By using localStorage to store and retrieve data in a straightforward way, I managed to implement the desired functionality, ensuring a seamless user experience.

Here is the code snippet I used to store and retrieve data from localStorage:

const saveToLocalStorage = (key, value) => {
  localStorage.setItem(key, value);
};

const getFromLocalStorage = (key) => {
  return localStorage.getItem(key);
};
What specific areas of your project would you like help with?

My JS

Code
Loading...

Please log in to post a comment

Log in

Community feedback

No feedback yet. Be the first to give feedback on Boluwatife Bonaventure’s solution.

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord