What is the equivalent JavaScript syntax to Python’s rawstring syntax r”” (instead of rf””)?
In Javascript, we can use the ES6 raw string String.raw`raw text`
to form a raw string, but it uses the template string syntax at the same time.
In Javascript, we can use the ES6 raw string String.raw`raw text`
to form a raw string, but it uses the template string syntax at the same time.