Skip to content

输出什么?

Posted on:2021年7月3日 at 22:23
console.log(String.raw`Hello\nworld`);

String.raw函数是用来获取一个模板字符串的原始字符串的,它返回一个字符串,其中忽略了转义符(\n\v\t等)。但反斜杠可能造成问题,因为你可能会遇到下面这种类似情况:

const path = `C:\Documents\Projects\table.html`;
String.raw`${path}`;

这将导致: "C:DocumentsProjects able.html" 直接使用String.raw

String.raw`C:\Documents\Projects\table.html`;

它会忽略转义字符并打印:C:\Documents\Projects\table.html 上述情况,字符串是Hello\nworld被打印出。

原文转自:https://fe.ecool.fun/topic/69fc3145-fc55-4a19-87be-9dd486c16eae