From db102cbf896febc899a7671a8d6ab3923a83231a Mon Sep 17 00:00:00 2001 From: LeviDing Date: Wed, 1 Jul 2020 16:18:46 +0800 Subject: [PATCH] Fix minor typo error: delete blank --- 1-js/02-first-steps/09-comparison/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/09-comparison/article.md b/1-js/02-first-steps/09-comparison/article.md index 9e3f1a65..d4afa32c 100644 --- a/1-js/02-first-steps/09-comparison/article.md +++ b/1-js/02-first-steps/09-comparison/article.md @@ -26,7 +26,7 @@ For example: alert( 2 > 1 ); // true (correct) alert( 2 == 1 ); // false (wrong) alert( 2 != 1 ); // true (correct) -``` +``` A comparison result can be assigned to a variable, just like any value: