when i log in to my account and try check my code page don’t respond and console don’y load but on i log out and work as gust wesite work normally
Does it work if you try a different browser? (IE, Edge, Firefox, Chrome, Safari)
Preferably with no extensions or extensions disabled
Can try clearing your cache
you may have a syntax error, check the console
yes i tried all above and same problem
if i just loged out and work without log in everything work well
Hmm, I think i experienced something similar, try resetting the code. When I wrote:
const locations = [
{
name: "town square",
"button text": ["Go to store", "Go to cave", "Fight dragon"],
"button functions": [goStore, goCave, fightDragon],
text = "You are in the town square. You see a sign that says \"Store\"."
}
];
The text part should have used a colon (“:”). The button would not work, it wouldn’t even tell me i was wrong. Fixing that issue made it work again.
It may be something similar.
yes, syntax errors in JavaScript stop JavaScript from working, that is also the JavaScript that powers the button to check the correctness of the code
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.