How to send control char using strict mode in javascript?
Use \u001b
instead. \0...
is an octal escape sequence which your JavaScript environment might not support.
Use \u001b
instead. \0...
is an octal escape sequence which your JavaScript environment might not support.