X
xdevel1999
Hi, I have the following problem:
when I try to access to the array in Big object I have 'Big is not
defined'
but
when I try to access to the function in Low object I have no error!!!!
WHY??
Big =
{
One: [1, 2, 4],
Two: [1, Big.One, 5]
};
alert(Big.Tow) // error
Low =
{
One: function()
{
},
Two: function()
{
Low.One();
}
};
Low.Two(); // no error
Thank
when I try to access to the array in Big object I have 'Big is not
defined'
but
when I try to access to the function in Low object I have no error!!!!
WHY??
Big =
{
One: [1, 2, 4],
Two: [1, Big.One, 5]
};
alert(Big.Tow) // error
Low =
{
One: function()
{
},
Two: function()
{
Low.One();
}
};
Low.Two(); // no error
Thank