From 0d895b484c58f657c66c3dd8deaa2fb62f9155ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=A3=E9=87=8C=E5=A5=BD=E8=84=8F=E4=B8=8D=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5?= <453491931@qq.com> Date: Sun, 8 May 2022 21:39:58 +0800 Subject: [PATCH] fix (#661) --- 2-js-basics/2-functions-methods/translations/README.zh-cn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-js-basics/2-functions-methods/translations/README.zh-cn.md b/2-js-basics/2-functions-methods/translations/README.zh-cn.md index 143f28b5..7dd08a76 100644 --- a/2-js-basics/2-functions-methods/translations/README.zh-cn.md +++ b/2-js-basics/2-functions-methods/translations/README.zh-cn.md @@ -163,7 +163,7 @@ setTimeout(function() { ### 箭头函数(Fat arrow functions) -在很多编程语言(包括 JavaScript)中都有一种称为**箭头**(arrow / fat arrow)函数的快捷写法。它会用到一个特殊的 `=>` 标志,看起来就像一个箭头 —— 它的名字就是这么来的!使用 `=>`,我们就可以跳过 `keyword` 关键字。 +在很多编程语言(包括 JavaScript)中都有一种称为**箭头**(arrow / fat arrow)函数的快捷写法。它会用到一个特殊的 `=>` 标志,看起来就像一个箭头 —— 它的名字就是这么来的!使用 `=>`,我们就可以跳过 `function` 关键字。 让我们用箭头函数再一次重写上面的代码: