Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I have successfully submitted the “Build a JavaScript Trivia Bot” challenge and received the completion checkmark (✓).
The Issue:
When I go back to revisit the challenge page, the code editor is completely empty. It seems my submitted solution is not loading back into the editor.
My Question:
Is this intended behavior (the editor resets after completion), or is my browser failing to retrieve the saved solution from local storage?

Your code so far


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

this is the intended behaviour, the code is saved in the browser local storage while you work on it (save with ctrl + s, or when running the tests) and then it’s not saved anymore once you pass the tests

if you want to save the code you need to download it, or copy it somewhere else

1 Like

Thank you for answer my question.

1 Like