I've come across a problem in that I don't see a way to easily convert strings to typed arrays, and converting from typed arrays to strings appears to be a real pain requiring a manual char code conversion for every byte. Is there any better methods to convert strings to typed arrays or vise-versa?
Example:
I have a UTF8 encoded string, "Something or other", and I want to write it to an ArrayBuffer in length then string format.
str.charCodeAtandString.fromCharCode. You can make it more convenient, though: jsfiddle.net/ACXM7. – pimvdb Nov 16 '11 at 15:32