I have a string for e.g:
var str = 'abcdef';
i want to get it in an array format e.g:
var a;
a[0]=a;
a[1]=b; and so on..
i am aware of split method but in this case of string without any space how can i split as individual character??