From 9ceaac7aeac286b2795f31fbd1cd3d03258aad7c Mon Sep 17 00:00:00 2001 From: CC2m2 <61456600+CC2m2@users.noreply.github.com> Date: Mon, 30 Aug 2021 19:15:59 +0800 Subject: Update index.html --- .../web/javascript/reference/global_objects/string/raw/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'files/zh-cn') diff --git a/files/zh-cn/web/javascript/reference/global_objects/string/raw/index.html b/files/zh-cn/web/javascript/reference/global_objects/string/raw/index.html index 8ff8794000..989a78f2c6 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/string/raw/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/string/raw/index.html @@ -55,10 +55,10 @@ String.raw`templateString`
String.raw()
String.raw`Hi\n${2+3}!`; -// 'Hi\n5!',Hi 后面的字符不是换行符,\ 和 n 是两个不同的字符 +// 'Hi\\n5!',Hi 后面的字符不是换行符,\ 和 n 是两个不同的字符 String.raw `Hi\u000A!`; -// "Hi\u000A!",同上,这里得到的会是 \、u、0、0、0、A 6个字符, +// "Hi\\u000A!",同上,这里得到的会是 \、u、0、0、0、A 6个字符, // 任何类型的转义形式都会失效,保留原样输出,不信你试试.length let name = "Bob"; -- cgit v1.2.3-54-g00ecf