Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Archie Guevelian
Archie Guevelian
4,085 Points

brackets.io throws unnecessary errors

Hi, any idea why brackets.io is throwing me unnecessary errors while this basic code seems to be fine and working?

JSLint 'prompt' was used before it was defined. var a = prompt('write something'); document.write can be a form of eval. document.write(a);

ESLint ERROR: 'prompt' is not defined. [no-undef] var a = prompt('write something'); ERROR: 'document' is not defined. [no-undef] document.write(a);

Not sure what does this mean, and obviously I am pretty new to all this so thanks for patience.

Adam Beer
Adam Beer
11,314 Points

Please show your whole code. The index and the js file too.

Code

Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.

      ```html
      <p>This is code!</p>
      ```

1 Answer

Steven Parker
Steven Parker
229,732 Points

I'm not a "brackets" user, but "prompt" is a function of a browser, so if your code is being executed in a server-side JavaScript engine, it would make sense that it is not defined. This would also be the case with "document".

The same thing would happen if you ran a program with "prompt" or "document" in it using node.js.