immediate window just showing {...}

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,
i'm the immediate window debugging my javascript and got the following:

?list
{...}

list is an array, can someone please tell me what do i do with this?

thanks,
rodchar
 
in the immed window for javascript if you use ?, it prints the value if
the arg is a datatype (string, date, boolean, number or null),
otherwise it displays {...} to indicate its an object.

try:

?list.length
?list[0]
?list.join(',')



-- bruce (sqlwork.com)
 
Back
Top