- javascript does not support associative array - array must have all variables from same kind try this
var start= array( 32.5, -97.2, 10 ); var start2= array( 't1', 't2' ); print start[0] ; then make a loop to print array items see this site http://www.w3schools.com/js/default.asp thanks read about arrays hatem gamal Merrill Oveson wrote: > Here's the solution: print "start( [32.5], [-97.2], ['10'], > ['Merrill'], ['Non-Exempt'] )"; > > On Tue, Aug 16, 2011 at 4:02 PM, Joshua Lutes <[email protected]> wrote: > >> Does a trailing comma after the single string make it work? >> >> Joshua. >> >> /* >> PLUG: http://plug.org, #utah on irc.freenode.net >> Unsubscribe: http://plug.org/mailman/options/plug >> Don't fear the penguin. >> */ >> >> > > /* > PLUG: http://plug.org, #utah on irc.freenode.net > Unsubscribe: http://plug.org/mailman/options/plug > Don't fear the penguin. > */ > > /* PLUG: http://plug.org, #utah on irc.freenode.net Unsubscribe: http://plug.org/mailman/options/plug Don't fear the penguin. */
