in reply to Join and Concatenation

it's b/c concat has higher operator precedence, using B::Deparse reveals it

DB<234> dp $cols = '[' . join '],[',@array . ']'; { ($cols = ('[' . join('],[', (@array . ']')))); }

Cheers Rolf

( addicted to the Perl Programming Language)