consider the following
JavaScript
x
16
16
1
➜ ~ node
2
Welcome to Node.js v16.15.1.
3
Type ".help" for more information.
4
> s = '('
5
'('
6
> s = '('
7
'('
8
> s = '\('
9
'\('
10
> s = String.raw`(`
11
'('
12
> s = String.raw`(`
13
'\('
14
> s = String.raw`\(`
15
'\\('
16
So, how do I set s
to '('
?
Advertisement
Answer
You don’t.
You’re confused about the value of a string and its representation (whence Python repr()
function).
A parenthesis is not a special character in a JavaScript string, so it will never be escaped in its canonical “code” representation. Therefore you will never make a string whose representation is '('
.
If you mean a string of length 2, with the first character being a backslash, and the second one being a left parenthesis, then '\('
is what you want.