Fix minor typo error: delete blank

This commit is contained in:
LeviDing 2020-07-01 16:18:46 +08:00 committed by GitHub
parent 340ce43421
commit db102cbf89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ For example:
alert( 2 > 1 ); // true (correct) alert( 2 > 1 ); // true (correct)
alert( 2 == 1 ); // false (wrong) alert( 2 == 1 ); // false (wrong)
alert( 2 != 1 ); // true (correct) alert( 2 != 1 ); // true (correct)
``` ```
A comparison result can be assigned to a variable, just like any value: A comparison result can be assigned to a variable, just like any value: