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` 关键字。 让我们用箭头函数再一次重写上面的代码: