-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1_one.js
49 lines (40 loc) · 1.14 KB
/
1_one.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// if
// const isUserLoggedIn = false;
// if (isUserLoggedIn) {
// console.log("UserLoggedIn");
// }
// else {
// console.log("no user not LoggedIn");
// }
// =================================
// const score = 200;
// if (score > 100) {
// let power = "fly";
// console.log(`user power : ${power}`);
// }
// console.log(`user power : ${power}`);
// =================================
// const balance = 1000;
// if (balance>500) console.log("test"),console.log("test2"); //is tarah code nhi karna hai
// if (balance<500) {
// console.log("less than 500");
// } else if(balance<700) {
// console.log("less than 700");
// }
// else if(balance<1200) {
// console.log("less than 1200");
// }
// else{
// console.log("if any condition not executed then default else executes");
// }
// =================================
// const UserLoggedIn = true;
// const debitCard = true;
// if (UserLoggedIn && debitCard && 2==3) {
// console.log("allow to buy courses");
// }
const UserLoggedInFromGoogle = false;
const UserLoggedInFromEmail = true;
if (UserLoggedInFromEmail || UserLoggedInFromGoogle) {
console.log("user can log in");
}