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 JavaScript Basics (Retired) Introducing JavaScript The JavaScript Console

Javascript practice not working.

I'm trying to practice the javascript stuff that I learned but when I make an html document and link the javascript and put (alert("I'm nice");) into the file and run it. I get an error message that says... JSLint Problem - 'alert' was used before it was defined... What am I doing wrong? What does this error mean? What is JSLint Problem?

4 Answers

Michael Escoto
Michael Escoto
30,028 Points

Hi Terry,

I think it's because you are wrapping your alert in parenthesis. Try just using alert("I'm nice"); and see if that works.

Hi Michael, I did that and still got the same error.

Hey man, how are you getting on with this?

Can you show us how you're linking the JS and the code you're using?

John McCall
John McCall
2,630 Points

is this what's in your code: (alert("I'm nice");)

It should be: alert("I'm nice");