Merge pull request #1981 from leviding/patch-13

Fix minor typo error: delete blank
This commit is contained in:
Ilya Kantor 2020-07-01 11:57:51 +03:00 committed by GitHub
commit ea3d179622
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: