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 and the DOM (Retiring) Getting a Handle on the DOM Select a Page Element By Its ID

Why were we allowed to write .value after myTextInput?

.

3 Answers

Steven Parker
Steven Parker
229,785 Points

It's a global that was created by the "const" statement on line 3 as a reference to an HTML element which was selected by ID. Since the element it refers to has a "value" property, you can write ".value" after it to access that property.

.

Steven Parker
Steven Parker
229,785 Points

The code is specifically referring to the <input> element that has the ID of "myTextInput". It's that object (not the global object) which has the "value" property being accessed.

.