var arr = "abcdefg".split("");
On Tue, Mar 4, 2008 at 8:25 AM, SyLon <[EMAIL PROTECTED]> wrote: > > What will be the best to put each character of a string into an array, > like so: > str = "abcdefg" => arr[0]="a", arr[1]="b", arr[6]="g" and so on. > Thanks, Leon. > > >