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 trialGregory Johnson
3,367 PointsWhat does a . represent....ll represent...and why is add before EventListener....
What does a . represent, ll represent and why is add before EventListener....could i have put something else beside add before EventListener, is add like a verb to a computer?
2 Answers
Simon Coates
28,694 PointsaddEventListener is a known method on an element (see http://www.w3schools.com/jsref/dom_obj_all.asp ). The dot is a way to access a method or property on an object eg. anObject.someAttribute or anObject.doSomething() . It's not going to make a lot of sense doing the basic course. (an object is a bundle of data and behaviour, and the browser creates objects that represent the UI. These are able to be manipulated.)
Gregory Johnson
3,367 Pointsthank you for the link...wow there is alot of them! It makes a little more sense now