Comment on A technique for hiding your JavaScript codeComments−mistercow14y>My JS code is an array of characters, a character has an ASCII code which lies in the range from 0 to 255Your JS code may happen to be ASCII only, but in the context of ECMAScript, a character is actually a Unicode code unit.
Comments
>My JS code is an array of characters, a character has an ASCII code which lies in the range from 0 to 255
Your JS code may happen to be ASCII only, but in the context of ECMAScript, a character is actually a Unicode code unit.