Subj : Re: boolean usage To : netscape.public.mozilla.jseng From : Igor Bukanov Date : Tue Aug 31 2004 05:31 pm eluru1 wrote: > Thanks Igor, > > I tried, Still it does not work. It is becuase I am calling static > method of the class. Here is the sample. I am not sure what is > happening. > > abcd=true; > js: classKeys [] = myclass.find(context, "TEST", nul > l, null, null,abcd); > js: ...........^ > js: "C:\rhino\rhino1_6R1\os1.js", line 1: Compilation produced 1 syntax > errors. > As I wrote, classKeys [] = ... is ivalid JS syntax! Write just: classKeys = myclass.find(context, "TEST", null, null, null,abcd); .