We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79e44a5 commit 4d8c526Copy full SHA for 4d8c526
Guidebook/Javascript.js
@@ -62,10 +62,8 @@ x != y //True
62
//"And"
63
var mp = 5;
64
var gb = 16;
65
-//Need to check if both of these conditions are true.
66
-mp > 5= and gb >= 16
67
-//"&&" can be used to check where two or more of these values are true.
68
-mp >= 5 && gb >= 16
+//Need to check if both of these conditions are true. "&&" can be used to check where two or more of these values are true. Basically "&&" means "and"
+mp >= 5 && gb >= 16
69
70
//Or
71
// "||" is used for "or" - to use when at least one condition is true in order to proceed.
0 commit comments