I am looking for how strings are processed physically in Javascript. The best example I can think of is that in the Java api it describes storing strings as:
String str = "abc";" is equivalent to: "char data[] = {'a', 'b', 'c'};
I am told that it uses an array object and saves each character as its own object, which will be used / access later (usually I am wrong about these things!) ...
How does javascript work?
user1360809
source share