I have a string: let value = "Emrah Tebrikeder120\'\'\'\'\'\'\'";. When I try to output it to the console, all the \ are deleted. How do I make all the \ in the string appear?
>Solution :
Use a double-backslash, like this:
let value = "Emrah Tebrikeder120\\'\\'\\'\\'\\'\\'\\'";
The "\’" is considered as escape sequence.