How do you convert a string to a character array in JavaScript?
I'm thinking getting a string like "Hello world!"
to the开发者_开发问答 array
['H','e','l','l','o',' ','w','o','r','l','d','!']
Note: This is not unicode compliant.
"I
How do you convert a string to a character array in JavaScript?
I'm thinking getting a string like "Hello world!"
to the开发者_开发问答 array
['H','e','l','l','o',' ','w','o','r','l','d','!']
Note: This is not unicode compliant.
"I
精彩评论