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 Angular Basics Angular Basic Forms Resetting the Form

Junlin Guo
Junlin Guo
5,728 Points

the value of the local variable #commentForm in the form element

In the form tag, why do we need to assign "ngForm" to the #commentForm variable?

1 Answer

Dane Parchment
MOD
Dane Parchment
Treehouse Moderator 11,075 Points

Because we want to actually gain access to the form itself, even though it is defined automatically we don't have access to it. So we need to gain access to the form by assigning it to a variable that we can use at our leisure!