diff --git a/1-js/02-first-steps/10-ifelse/article.md b/1-js/02-first-steps/10-ifelse/article.md index 28cafc172d..4776b996c3 100644 --- a/1-js/02-first-steps/10-ifelse/article.md +++ b/1-js/02-first-steps/10-ifelse/article.md @@ -56,7 +56,7 @@ if (1) { // 1 是真值(truthy) } ``` -我们也可以将未计算的布尔值传入 `if` 语句,像这样: +我们也可以将预先计算的布尔值传入 `if` 语句,像这样: ```js let cond = (year == 2015); // 相等运算符的结果是 true 或 false