Skip to content

Commit 4d8c526

Browse files
committed
ggg
1 parent 79e44a5 commit 4d8c526

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Guidebook/Javascript.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,8 @@ x != y //True
6262
//"And"
6363
var mp = 5;
6464
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
65+
//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"
66+
mp >= 5 && gb >= 16
6967

7068
//Or
7169
// "||" is used for "or" - to use when at least one condition is true in order to proceed.

0 commit comments

Comments
 (0)