From 7f51c549fc6ad81f3234a794d6075f18964bc33b Mon Sep 17 00:00:00 2001 From: A1lo Date: Wed, 8 Nov 2023 21:35:25 +0800 Subject: [PATCH] Update files/zh-cn/web/javascript/reference/operators/this/index.md --- files/zh-cn/web/javascript/reference/operators/this/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/zh-cn/web/javascript/reference/operators/this/index.md b/files/zh-cn/web/javascript/reference/operators/this/index.md index 22b2212846f02b..6e582237e07af6 100644 --- a/files/zh-cn/web/javascript/reference/operators/this/index.md +++ b/files/zh-cn/web/javascript/reference/operators/this/index.md @@ -96,7 +96,7 @@ console.log(typeof getThisStrict()); // "undefined" 在非严格模式下,一个特殊的过程称为 [`this` 替换](/zh-CN/docs/Web/JavaScript/Reference/Strict_mode#非_this_替换)确保 `this` 的值总是一个对象。这意味着: -- 如果一个函数被调用时 `this` 被设置为 `undefined` 或 `null`,`this` 会被替换为{{jsxref("globalThis")}}。 +- 如果一个函数被调用时 `this` 被设置为 `undefined` 或 `null`,`this` 会被替换为 {{jsxref("globalThis")}}。 - 如果函数被调用时 `this `被设置为一个原始值,`this` 会被替换为原始值的包装对象。 ```js