Click to See Complete Forum and Search --> : Do both of these have to be true?


SugarGirl
03-25-2003, 11:24 AM
Ehat does this mean?? Do both conditions have to be true?? Why is there no 'and' or 'or' condition?

if (this.hasChildVisible) this.hideChildren(false,true);

havik
03-25-2003, 11:41 AM
if (this.hasChildVisible) this.hideChildren(false,true);

is equivalent to:

if (this.hasChildVisible) {
this.hideChildren(false,true);
}

Havik