[jQuery] Putting each character of a string into an array
[jQuery] Putting each character of a string into an array
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.