Hello,
My question is:
I'm adding character 253 to a javascript string this way:
var str = '';
str += 'a';
str += unescape('%FD') ;
str += 'b';
Is there another way to do this. Is there a function like: str += char(253)
?
Thanks in advance,
Vincent
My question is:
I'm adding character 253 to a javascript string this way:
var str = '';
str += 'a';
str += unescape('%FD') ;
str += 'b';
Is there another way to do this. Is there a function like: str += char(253)
?
Thanks in advance,
Vincent
Comment