diff --git a/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md b/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md index 4b527631da7080..d3ad680f15ac94 100644 --- a/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md +++ b/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md @@ -266,7 +266,7 @@ myVariable = '韩梅梅'; ```js let iceCream = "chocolate"; if (iceCream === "chocolate") { - alert("我最喜欢巧克力冰激淋了。"); + alert("我最喜欢巧克力冰淇淋了。"); } else { alert("但是巧克力才是我的最爱呀……"); }