for example, I create a constructor function called Test,
function Test(a,b)
{
this.a = a;
this.b = b;
var test = "test";
}
When I attempt to view the properties of the Test constructor in firefox debug mode, I don't see these properties (a, b, and test) I define. Why?
