From 6e8bd1d26417c3d529b15db1dd15bf94a0c8d376 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=AD=E4=B9=9D=E9=BC=8E?= <109224573@qq.com> Date: Fri, 27 Aug 2021 09:43:52 +0800 Subject: [PATCH] fix: translation error --- 1-js/02-first-steps/10-ifelse/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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